* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #2c2929;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
 
/* Navbar */
.navbar {
    position: sticky;
    top:0;
    background: transparent ;
    backdrop-filter: blur(10px);
   padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
  width: auto;
    transition: transform 0.5s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #1A73E8;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section with 3D Parallax */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    color: #09090a;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: float 3s infinite alternate;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 800; 
    margin: 1rem 0;
    color: #131111 ;
}

.cta-btn {
    padding: 1rem 2.5rem;
    background: #1A73E8;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.5);
}

 .hero-bg {
      position: relative;
      width: 100%;
      height: 100vh; /* Full screen height */
      overflow: hidden;
    }

    .hero-bg video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }
.hero:hover .hero-bg {
    transform: translateZ(-100px) scale(1.2);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1C1C1C, #0a0a0a);
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #f3f4f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
   
}

.team-card {
    background: rgba(185, 176, 176, 0.1);
    padding: 2rem;
    border-radius: 50px;
    transition: transform 0.5s;
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);

}

.team-card:hover {
    transform: rotateY(10deg) translateZ(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.team-card img {
    padding-top: 2PX;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Journey Section */
.journey {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(28, 28, 28, 0.9));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.journey-title {
    font-size: 3.5rem;
    color: #f7fbff;
    text-align: center;
    margin-bottom: 3rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: transform 0.5s;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    transition: transform 0.5s, opacity 0.5s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #1A73E8;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    transition: transform 0.5s;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1A73E8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite ease-in-out;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: transform 0.5s;
}

.timeline-content h4 {
    font-size: 1.8rem;
    color: #1A73E8;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2) rotate(45deg);
}

.timeline-item:hover .timeline-content {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    animation: bgShift 5s infinite alternate;
    z-index: 0;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #1A73E8; }
    to { text-shadow: 0 0 15px #1A73E8, 0 0 25px #1A73E8; }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes bgShift {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 2rem;
    }

    .journey-title {
        font-size: 2rem;
    }
}

/* Technology Section */
.technology {
    padding: 5rem 2rem;
    text-align: center;
    background: #1C1C1C;
}
.technology h2{
    font-size: 3.5rem;

}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5rem;
    max-width: 1200px;
    margin: auto;
    padding-top: 2REM;
    transition: transform 0.5s, box-shadow 0.5s;
    transform-style: preserve-3d;
    border-radius: 20px;
    border-color: #1557b5;
}
   

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    
    
}


.tech-card:hover {
    transform: rotateX(5deg) translateZ(10px);
}

.tech-card img {
    width: 100px;
    height: 100px;
}
/* Services Section with Background Image */
.services {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Ensures the section takes full height if needed */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/image1.jpg.jpg') no-repeat center center/cover; /* Replace with your image */
    z-index: 0;
    opacity: 0.2; /* Subtle overlay effect */
    transition: opacity 0.5s;
}

.services:hover::before {
    opacity: 0.3; /* Slightly darker on hover for effect */
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(28, 28, 28, 0.9)); /* Overlay for contrast */
    z-index: 1;
}

.services-title {
    font-size: 3.5rem;
    color: #f7f9fc;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-shadow: 0 0 15px rgba(26, 115, 232, 0.4);
    position:relative;
    text-align: center;
    z-index: 2;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.5s, box-shadow 0.5s;
    transform-style: preserve-3d;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1A73E8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    padding: 0.8rem 2rem;
    background: #1A73E8;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.learn-more:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.5);
    background: #1557b5;
}

.service-card:hover {
    transform: rotateY(10deg) translateZ(20px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

@keyframes glow {
    from { text-shadow: 0 0 5px #1A73E8; }
    to { text-shadow: 0 0 20px #1A73E8, 0 0 30px #1A73E8; }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        height: 150px;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background:rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 3.5rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem ;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #1A73E8;
    border-radius: 5px;
    background: transparent;
    color: #fff;
}

.contact-form textarea {
    height: 150px;
}

/* Left Side: Info */
.contact-info {
    background: transparent ;
    color: #fff;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }
  
  .contact-info img {
    width: 300pxpx;
    margin-bottom: 20px;
    height: 300px;
  }
  
  .contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-top : 0%;
  }
  
  .contact-info p {
    font-size: 15px;
    line-height: 1.6;
  }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons img {
    width: 50px;
    transition: transform 0.3s;
    height: 50px;
}

.social-icons img:hover {
    transform: rotate(15deg) scale(1.2);
}

/* Animations */
@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(28, 28, 28, 0.9);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}
html {
  scroll-behavior: smooth;
}
