

/* ==========
about-hero
========== */

.about-hero {
    height: 100vh;
    /* background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085") center/cover no-repeat; */
    /* background: url("/Assetes/IMG/susheel.webp") center/cover no-repeat; */
    background-attachment: fixed;
    position: relative;
    /* background-position: 100%; */
    /* background-size: 50vh; */
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    background: rgb(0 0 0 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

.hero-content {
    max-width: 800px;
    /* color: white; */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--highlight-color,#00eaff);
}

.hero-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 20px;
    /* color: #bbbbbb; */
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    /* color: #e5e5e5; */
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 30px;
    background: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #00eaff;
    color: black;
    transform: translateY(-3px);
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid  var(--a-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--text);
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}















/* =================
my-story section
========== */
.my-story {
    padding: 100px 5%;
    /* background: #f9f9f9; */

    display: grid;
    align-items: center;
    align-content: space-evenly;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.story-box {
    /* background: white; */
    background: rgba(255, 255, 255, 0.866);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    color: black;
}

/* zig zag effect */

.story-box:nth-child(2),
.story-box:nth-child(4) {
    transform: translateY(60px);
}

.story-box:hover {
    transform: translateY(-10px);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.story-box h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.story-box p {
    line-height: 1.6;
    color: #555;
}

/* mobile */

@media(max-width:768px) {

    .story-container {
        grid-template-columns: 1fr;
    }

    .story-box:nth-child(2),
    .story-box:nth-child(4) {
        transform: none;
    }

}




















/* ==============
education section
=============== */

.education {
    padding: 120px 10%;
    text-align: center;
}

.education-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.education-card {
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    background-color: #686c7917;
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.edu-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.education-card h3 {
    margin-bottom: 5px;
}

.education-card h4 {
    color: #7979ff;
    margin-bottom: 10px;
}

.edu-location,
.edu-year {
    font-size: 0.9rem;
    color: #666;
    color: hsl(291, 97%, 50%);
    opacity: 0.9 !important;
}

.education-card p {
    margin-top: 10px;
    line-height: 1.6;
}

/* Responsive */

@media(max-width:900px) {

    .education-container {
        grid-template-columns: 1fr;
    }

}

























/*============
  SKILLS Section 
  ============*/

.skills-section {
    justify-content: center;
    align-items: center;
    max-width: var(--container, 1500px);
    width: 100%;
    overflow: hidden;
    margin: 0px auto;


}

.container {
    padding: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    /* margin-bottom: 8px; */
}

.subtitle {
    /* color: #ca6df8; */
    font-weight: 200;
}

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


.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;

}

.skill-category {
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.141);
    border: 1px solid rgba(0, 0, 0, 0.112);
    border-radius: 10px;

}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.category-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background-color: #ac30ff27;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 500;
}

.skill-percentage {
    font-weight: 600;
    color: var(--a-color, #7979ff);
    font-size: 0.9rem;
}

.skill-bar {
    height: 8px;
    background-color: #82889281;
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background-color: var(--a-color, #0080ff);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #a9a9a940;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.tool-item:hover {
    transform: translateY(-2px);
    background: rgba(15, 114, 255, 0.05);
}

.tool-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #cc65ff;
    background-color: #c5c5c555;

}

.tool-name {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px;
    }

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

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
























/* ============
what-i-do section
============= */

.what-i-do {
    padding: 150px 5% 0px;
    text-align: center;
    /* display: grid;
                align-items: center;
                align-content: center; */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.section-title-p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-box {
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    background-color: #a9a9a940;
    background-color: #686c7917;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-box p {
    font-size: 0.95rem;
    /* color: #555; */
    line-height: 1.6;

}

/* Responsive */

@media(max-width:992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}





















/*============
 PROJECT SECTION
 ========== */
.projects-section {
    max-width: var(--container, 1500px);
    width: 100%;
    overflow: hidden;
    margin: 0px auto;
}

.projects-section .section-header {
    padding: 40px 40px;
    text-align: center;
}

.projects-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.projects-section .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.projects-content {
    padding: 0px 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: rgb(255 255 255 / 7%);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    color: rgb(11, 11, 11);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-info {
    padding: 25px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: rgba(15, 114, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #0080ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: transparent;
    color: #0080ff;
    border: 2px solid #00eaff;
    box-shadow: 0 0 20px #00eaff;

}

.project-link.outline {
    background: transparent;
    color: #0080ff;
}

.project-link.outline:hover {
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.67);
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 114, 255, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 114, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-section .section-header {
        padding: 40px 30px;
    }

    .projects-section .section-title {
        font-size: 2rem;
    }

    .projects-content {
        padding: 40px 30px;
    }

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

@media (max-width: 480px) {
    .projects-section .section-header {
        padding: 30px 20px;
    }

    .projects-content {
        padding: 30px 20px;
    }

    .project-links {
        flex-direction: column;
    }
}


























/*============
Experience / Internships
==========*/

/* Experience Card Styling */
.experience-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.exp-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.exp-header .company {
    font-size: 0.95rem;
    /* color: #555; */
    display: block;
    margin-bottom: 15px;
}

.exp-location,
.exp-duration {
    font-size: 0.9rem;
    /* color: #666; */
    margin-bottom: 5px;
}

.exp-responsibilities {
    list-style: inside disc;
    margin: 15px 0;
    padding-left: 10px;
    /* color: #444; */
    opacity: 0.7;
    line-height: 1.6;
}

.exp-responsibilities li {
    margin-bottom: 8px;
}

.exp-buttons {
    margin-top: 15px;
}

.exp-buttons .btn,
.exp-buttons .btns {
    display: inline-block;
    margin-right: 10px;
    margin-top: 5px;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.exp-buttons .btn {
    background-color: #007bff;
    color: #fff;
}

.exp-buttons .btn:hover {
    background-color: #0056b3;
}

.exp-buttons .btns {
    background-color: #f0f0f0;
    color: #333;
}

.exp-buttons .btns:hover {
    background-color: #e0e0e0;
}




/*========== Open To Work Card ======== */
.experience {
    padding: 150px 5%;
    text-align: center;
    /* min-height: 100vh; */
}

.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.experience-card {
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: left;
    max-width: 600px;
    background-color: #686c7917;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exp-header h3 {
    margin-bottom: 4px;
}

.company {
    color: #7979ff;
    font-weight: 600;
}

.exp-location,
.exp-duration {
    font-size: 0.9rem;
    color: hsl(291, 97%, 50%);
}

.exp-desc {
    margin: 15px 0;
    line-height: 1.6;
}

.exp-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* 
            .btn-company {
                padding: 10px 20px;
                background: #00eaff;
                color: black;
                text-decoration: none;
                border-radius: 25px;
                font-size: 0.9rem;
            } */

/* .btn-details {
                padding: 10px 20px;
                border: 2px solid #0080ff;
                color: #0080ff;
                text-decoration: none;
                border-radius: 25px;
                font-size: 0.9rem;
            } */
/* 
            .btn-details:hover {
                background: #00eaff;
                color: black;
            } */



















/*===================
Collaboration & Support
================ */
.collaboration {
    padding: 100px 5%;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-box {
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    background-color: #686c7930;

}

.team-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-box h3 {
    margin-bottom: 5px;
}

.team-box span {
    font-size: 0.9rem;
    color: #00eaff;
    color: #7979ff;
    display: block;
    margin-bottom: 10px;
}

.team-box p {
    font-size: 0.9rem;
    /* color: #555; */
    line-height: 1.6;
    opacity: 0.7 !important;
}

/* Responsive */

@media(max-width:992px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}




























/*=================
vision-section
================ */

.vision-section {
    padding: 100px 5%;
    text-align: center;

    display: grid;
    align-content: center;
}

.vision-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;

}

.vision-box {
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    background-color: #686c7917;

}

.vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.vision-box h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.vision-box p {
    /* color: #ff4e4e; */
    opacity: 0.7 !important;
    line-height: 1.7;
}

/* Responsive */

@media(max-width:768px) {

    .vision-container {
        grid-template-columns: 1fr;
    }

}




























/*================
            Contact section
            ============= */

/* Floating Label Contact Form */
.contact-form {
    max-width: 500px;
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    background-color: #fff;
    padding: 0 4px;
    color: #343434;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}


.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 8px;
    font-size: 0.8rem;
    color: #007bff;
}

button {
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* ---------------- Floating Label for Select ---------------- */
.form-group select {
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    appearance: none;
    /* Remove default arrow */
    outline: none;
    transition: 0.3s;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%20fill%3D'none'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201L6%207L11%201'%20stroke%3D'%23888'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
}

/* Floating label on select focus or selected */
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -10px;
    left: 8px;
    font-size: 0.8rem;
    color: #007bff;
}

/* Optional: on hover border color */
.form-group select:hover {
    border-color: #007bff;
}




























/* /////////////////////////// */
/* === SIMPLE CONTACT SECTION === */
.contact-simple {
    max-width: 1300px;
    ;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-info-simple {
    display: flex;
    flex-direction: column;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.contact-item-simple:hover {
    transform: translateY(-5px);
}

.contact-icon-simple {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ac30ff27;
    border-radius: 10px;
    font-size: 1.2rem;
}

.contact-details-simple h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.email a {
    color: var(--a-color, #11ffb8);
}

.email a:hover {
    color: #66e8bc;
}



.contact-form-simple {
    padding: 30px;

}

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

@media (max-width:1050px) {
    .form-group-simple {

        margin-bottom: 8px;
    }

}

.form-label-simple {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input-simple,
.form-textarea-simple {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8fafc9e;
}

.form-input-simple:focus,
.form-textarea-simple:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea-simple {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-simple {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn-simple:hover {
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form-simple {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-simple {
        padding: 40px 15px;
    }

    .contact-item-simple {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}