@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
    background: #343841;
    color: #333;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #007bff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px #007bff);
}

.nav-menu {
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #007bff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-link {
    font-family: "Share Tech", sans-serif;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 0 10px #007bff;
    transform: translateY(-3px);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    font-size: 0.9rem;
    color: #333;
}

.header-button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
   font-family: "Share Tech", sans-serif;
    font-size: 0.9rem;
}

.header-button:hover {
    background-color: #0056b3;
    box-shadow: 0 0 15px #007bff;
    animation: powerUp 0.5s;
}

@keyframes powerUp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-link {
        font-family: "Share Tech", sans-serif;
        font-size: 0.9rem;
        color: #333;
        font-weight: 700;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 45px;
        right: 0;
        min-width: 330px;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-menu.active .bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-menu.active .bar-2 {
        opacity: 0;
    }
    .nav-menu.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
   min-height: 100%;
    position: relative;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact{
    padding: 5rem 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: "Share Tech", sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #007bff;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    animation: slideIn 1s ease forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.stat-card:hover {
    border-color: #007bff;
    box-shadow: 0 0 15px #007bff;
    transform: scale(1.05);
}

.stat-icon {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.stat-number {
    font-family: "Share Tech", sans-serif;
    font-size: 2rem;
    color: #007bff;
}

.stat-card p {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
}
.about p{
  
        color: #fff;
        margin-bottom: 25px;
    
}
.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-family: "Share Tech", sans-serif;
    font-size: 2rem;
    color: #007bff;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    margin-bottom: 1.5rem;
}

.about-content {
    flex: 1;
}

.about-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #0056b3;
    box-shadow: 0 0 15px #007bff;
    animation: coinCollect 0.5s;
}

@keyframes coinCollect {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-images {
    flex: 1;
    position: relative;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #007bff;
}

.quote-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #fff;
    border-style: dashed;
}

.quote-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.quote-card p {
    font-family: "Share Tech", sans-serif;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    .about-content {
        padding-right: 2rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
   
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;

}

.service-card:hover {
    border-color: #007bff;
    box-shadow: 0 0 15px #007bff;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-card:hover img {
    transform: rotate(10deg);
}

.service-title {
    font-family: "Share Tech", sans-serif;
    font-size: 1rem;
    color: #007bff;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0;
}
.why-choose p {
    color: #fff;
}
.why-choose-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-content {
    flex: 1;
}

.stat-bar {
    margin: 1rem 0;
}

.stat-bar p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: #e0e0e0;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    background-color: #007bff;
    height: 100%;
    transition: width 1s ease;
}

.progress-bar:hover .progress {
    box-shadow: 0 0 10px #007bff;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #007bff;
}

@media (min-width: 768px) {
    .why-choose-container {
        flex-direction: row;
        align-items: center;
    }
    .why-choose-content {
        padding-right: 2rem;
    }
}

/* Projects Section */
.projects {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
   
}

.project-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.project-title {
   font-family: "Share Tech", sans-serif;
    font-size: 1rem;
    color: #007bff;
    margin: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}



@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Team Section */
.team {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
  
    padding: 1rem;
    border-radius: 5px;
 
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.team-card:hover {
    border-color: #007bff;
    box-shadow: 0 0 15px #007bff;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: translateY(-10px);
}

.team-name {
    font-family: "Share Tech", sans-serif;
    font-size: 1rem;
    color: #007bff;
}

.team-title {
    color: #666;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid #007bff;
    border-style: dashed;
}

.testimonial-card:hover {
    box-shadow: 0 0 15px #007bff;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: #007bff;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
    transition: all 0.3s ease;
}

.testimonial-card:hover img {
    transform: rotate(360deg);
}

.testimonial-name {
    font-family: "Share Tech", sans-serif;
    font-size: 1rem;
    color: #007bff;
}

.testimonial-title {
    color: #666;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background: #1c2526;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: "Share Tech", sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
   font-family: "Share Tech", sans-serif;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #007bff;
}

.photo-gallery {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.photo-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.photo-gallery img:hover {
    filter: brightness(120%);
    box-shadow: 0 0 10px #007bff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    background: white;
    font-family: "Share Tech", sans-serif;
    font-size: 0.8rem;
}

.newsletter-button {
    padding: 0.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Share Tech", sans-serif;
    font-size: 0.8rem;
}

.newsletter-button:hover {
    background-color: #0056b3;
    box-shadow: 0 0 15px #007bff;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    .newsletter-form {
        flex-direction: row;
    }
}

/* Animations */
@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .nav-menu {
        position: relative;
        order: 5;
    }
    .hero {
        height: 100%;
        min-height: fit-content;
        position: relative;
        padding: 5rem 0;
        color: #333;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .header-button {
        padding: 0.5rem 1rem;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-family: "Share Tech", sans-serif;
        font-size: 0.5rem;
    }
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}