/* Reset and Base Styles */


:root{
    --size: 120px;     /* диаметр */
    --speed: 10s;     /* скорость одного оборота */
    --thickness: 10px; /* толщина обода */
  }
  
  .wheel{
    width: var(--size);
    aspect-ratio: 1/1;
    border-radius: 50%;
    animation: spin var(--speed) linear infinite;
    transform-origin: center;
    will-change: transform;
  }
  

  @keyframes spin{
    to{ transform: rotate(360deg); }
  }
  
  /* уважение к системной настройке «меньше анимации» */
  @media (prefers-reduced-motion: reduce){
    .wheel{ animation: none; }
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-width: 1400px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2162FE;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 2px solid white;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1rem;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.phone {
    font-weight: 500;
}

.language {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    max-height: 1000px;
    background: linear-gradient(180deg,rgba(33, 98, 254, 1) 0%, rgba(26, 78, 215, 1) 100%);
    display: flex;
    align-items: flex-start;
    padding: 120px 20px 0;
    position: relative;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1.5rem;
    background: transparent;
    border: 3px solid white;
    border-radius: 0 150px 0 150px;
    padding: 64px;
    width: 100%;
    position: relative;
    height: 640px;
    max-height: 640px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    height: 100%;
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
    width: 600px;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn {
    padding: 20px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: #2160F3;
    border-radius: 0 10px 0 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-graphic {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

.venons-logo-large {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-symbol {
    width: 390px;
    height: 390px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about {
    padding: 200px 0;
    background: white;
    position: relative;
}

.about_circle {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: #ffffff;
    border-radius: 0 100% 0 0;
    z-index: 1;
}

.about_circle_background {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: #1A4ED7;
    z-index: 0;
}

.about-content {
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 800px;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 520;
    color: #061975;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 20px;
    color: #8E8E8E;
    font-weight: 300;
    padding-bottom: 40px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: transparent;
    border-radius: 70px 0px 70px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 620px;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.card-bottom {
    background: white;
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    top: 45%;
    padding: 64px 1.5rem 4rem;
    border-radius: 50px 0px 50px 0px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    
}

.stat-card.yellow .card-top {
    background: #FFBD1A;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 1.5rem 1rem;
    border-radius: inherit;
}

.stat-card.blue .card-top {
    background: #0DBDF8;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 1.5rem 1rem;
    border-radius: inherit;
}

.stat-card.peach .card-top {
    background: #F1B698;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 1.5rem 1rem;
    border-radius: inherit;
}

.card-top::after {
    content: none;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin: 0;
    width: 200px;
}



.stat-card p {
    color: #8a8a8a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.7;
}

/* Mission Section */
.mission {
    padding-top: 5rem 0;
    position: relative;
    overflow: hidden;
}

.mission-background {
    background: url(Resurs/Sunlighting.png);
    background-size: cover;
    background-position: center;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mission-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.mission-card {
    margin-top: 400px;
    background: #1be05d;
    color: white;
    border-radius: 100px 0 100px 0;
    padding: 2rem;
    bottom: 10px;
    position: relative;
    z-index: 10;
}

.mission-card-inner {
    border: 3px solid white;
    border-radius: 80px 0 80px 0;
    padding: 3rem;
    
}

.mission-card h2 {
    font-size: 2.8rem;
    font-weight: 520;
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.mission-logo {
    position: absolute;
    bottom: 4rem;
    right: 5rem;
    font-size: 2rem;
    opacity: 0.8;
}

/* Experience Section */
.experience {
    position: relative;
    background: white;
    top: -250px;
    border-radius: 0 250px 0 0;
    padding-top: 300px;
}

.experience h2 {
    font-size: 2.5rem;
    font-weight: 520;
    color: #061975;
    text-align: start;
    margin-bottom: 3rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.experience-cards-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.experience-card {
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 247px;
    display: flex;
    align-items: flex-start;
}

.experience-card.border-left-top {
    border-radius: 64px 0 0 0;
}

.experience-card.border-right-top {
    border-radius: 0 64px 0 0;
}

.experience-card.border-left-bottom {
    border-radius: 0 0 64px 0;
}

.experience-card.border-right-bottom {
    border-radius: 0 0 0 64px;
}

.experience-card.fmcg {
    background: #f0f0f0;
}

.experience-card.ai {
    background: #e3f2fd;
}

.experience-card.auto {
    background: #f5f5f5;
}

.experience-card.pharm {
    background: #fff3e0;
}

.card-overlay {
    color: white;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.card-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 124px 0;
    background: linear-gradient(180deg, #1f59e1 0%, #143B98 100%);
    
    color: white;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 520;
    text-align: left;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: transparent;
    border-radius: 0 70px 0 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 500px;
    display: flex;
    flex-direction: column;

}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-top {
    background: rgb(33,98,254,0.6);

    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem 1rem;
    border-radius: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-top: 18px;
    font-size: 1.5rem;
    font-weight: 500;
    color:  #061975;
    text-align: left;
    margin-bottom: 15px;
}

.service-card-bottom {
    background: white;
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    height: 65%;
    padding: 1.5rem 1.5rem 4rem;
    border-radius: 0 40px 0 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card p {
    color: #8a8a8a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.7;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.clients-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.carousel-row {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.carousel-row:nth-child(2) {
    animation: scroll-right 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.client-logo-image {
    width: 120px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1);
    transition: filter 0.3s ease;
}

.client-logo:hover .client-logo-image {
    filter: grayscale(0%) brightness(0.7);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Testimonial Section */
.testimonial {
    padding-top: 220px;
    padding-bottom: 150px;
    
    background: white;
}

.testimonial-card {
    border-radius: 100px 0 100px 0;
    border: 4px solid #2162FE;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
}

.testimonial-content {
    width: 500px;
}

.testimonial-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #061975;
}

.testimonial-title {
    color: #1A4ED7;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.testimonial-quote {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 100px;
    font-weight: 200;
}

.testimonial-person-image {
    position: absolute;
    object-fit: contain;
    height: 600px;
    width: 500px;
    right: 0;
    bottom: 0;
}

.testimonial-logo-image {
    position: absolute;
    height: 300px;
    width: 300px;
    object-fit: contain;
    bottom: -80px;
    left: 20%;
}

.ceo-photo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-photo i {
    font-size: 3rem;
    color: white;
}

.testimonial-logo {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #4FC3F7;
    font-size: 2rem;
}

/* Team Section */
.team {

}

.team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #061975;
    text-align: left;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 80px;
    height: 80px;
    background: #2160F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-photo i {
    font-size: 2rem;
    color: white;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(180deg,rgba(33, 98, 254, 1) 0%, rgba(26, 78, 215, 1) 100%);
    color: white;
    text-align: center;
    padding-bottom: 200px;
    padding-top: 200px;
}

.cta-content {
    margin: 0 auto;
    border: 3px solid white;
    padding: 80px;
    border-radius: 0 100px 0 100px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 520;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    padding-left: 20%;
    padding-right: 20%;
    font-weight: 300;
}

/* Footer */
.footer {
    background: rgba(26, 78, 215, 1);
    color: white;
    padding: 5rem 0 1rem;
    border-top: 3px solid white;
    padding: 30px;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.footer-section-2 {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.it-park-logo {
    display: flex;
    align-items: right;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: right;
    justify-content: right;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-align: end;
}

.social-links {
    display: flex;
    justify-content: right;
    align-items: right;
}

.social-links a {
    margin: 10px;
    border-radius: 50%;
    display: flex;
    align-items: right;
    justify-content: right;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 22px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    width: 200px;
}

.online-logo {
    width: 200px;
}

.footer-address p {
    opacity: 0.8;
    text-align: right;
    font-size: 12px;
    font-weight: 200;

}

.footer-copyright p {
    opacity: 0.8;
    text-align: right;
    font-size: 0.9rem;
    /* width: 600px; */
    font-size: 12px;
    font-weight: 200;
}

/* Image Styles */
.logo-image {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-icon-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.accent-image {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.stat-icon-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.card-logo-image {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.mission-logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(110%);
}


.footer-logo-image {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.it-park-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.team-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.team-section {
    text-align: center;
    margin-top: 2rem;
}

/* Projects Section */
.projects {
    padding: 10rem 0;
    background: linear-gradient(180deg,rgba(33, 98, 254, 1) 0%, rgba(26, 78, 215, 1) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 250px 0 0 0;
}


.projects .container {
    position: relative;
    z-index: 2;
}

.projects-header {
    text-align: left;
    margin-bottom: 4rem;
}

.projects-header h2 {
    font-size: 2.5rem;
    font-weight: 520;
    margin-bottom: 1rem;
    text-align: left;
}

.projects-header p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
    align-self: start;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 0 50px 0 50px;
    padding: 2rem;
    padding-bottom: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.project-card.yellow {
    background-color: #ffbd1a;

}

.project-card:hover {
    transform: translateY(-10px);
}

.project-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #061975;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-logo {
    font-size: 3rem;
    font-weight: 900;
    color: #2160F3;
}

.project-symbol {
    position: absolute;
    right: 5%;
    z-index: -1;
}

.project-logo.green {
    color: #1be05d;
}

.lightning-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}


.project-logo-image {
    width: 300px;
    height: 250px;
    object-fit: fill;
    align-self: center;
}

.project-logo-icon_image {
    width: 150px;
    height: 70px;
    object-fit: contain;
}

.project-logo-icon_image_2 {
    width: 200px;
    height: 70px;
    object-fit: contain;
}

/* Phone Mockup Styles */
.phone-mockup {
    width: 120px;
    height: 200px;
    background: #000;
    border-radius: 20px;
    padding: 8px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.app-header {
    margin-bottom: 15px;
}

.search-bar {
    background: white;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 10px;
    color: #999;
    text-align: center;
    border: 1px solid #eee;
}

.app-content {
    flex: 1;
}

.weekly-activity h4 {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.activity-graph {
    position: relative;
    height: 60px;
}

.graph-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
}

.graph-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point {
    width: 6px;
    height: 6px;
    background: #2160F3;
    border-radius: 50%;
}

.graph-labels {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: #999;
}

/* Charging Station Styles */
.charging-station {
    width: 100px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-body {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.station-display {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.charging-cables {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.cable {
    width: 3px;
    height: 20px;
    background: #333;
    border-radius: 2px;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-wrapper {
        height: 70vh;
        padding: 2rem 3rem 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-symbol {
        width: 250px;
        height: 250px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-header h2 {
        font-size: 2rem;
    }
    
    .project-card {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}  */