/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Logo */
.logo img{
    font-size: 18px;
    font-weight: bold;
    width: 150px;
}

/* Logo Hero */
.logo-hero {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: auto;
    padding: 20px;
}
.logo-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Optional: rounded corners */
}

.logo-hero p {
  padding-right: 20px;
  padding-left: 20px;
}


/* Hero Section */
.hero {
    height: 100 vh;
    /*background-image: url('https://img.freepik.com/free-photo/3d-render-background-design-network-communications_1048-14036.jpg') no-repeat center center/cover;*/
    /* background: url('images/hero.jpg') center/cover no-repeat; */
    /* Parallax image */
    background: url('images/hero.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /*overlaping element*/
    position: relative;
    z-index: 5; /* Bring this section in front */
    margin-bottom: -50px; /* Move bottom edge forward */
    padding-bottom: 80px; /* Give space to create the overlap effect */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 30px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Call-to-Action Button */
.btn {
    display: inline-block;
    background: #ffeb3b;
    color: black;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffc107;
}


/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;600&display=swap');

/* Apply fonts to different elements */
.font-one {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.font-two {
    font-family: 'Pacifico', cursive;
    font-size: 1.2em;
    color: #007bff;
}

.font-two-a {
    font-family: 'Pacifico', cursive;
    font-size: 1.2em;
    color: #5ce1e6;
}

.font-three {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #28a745;
}


/* Expertise Section */
.target {
    background: #fff;
    
  padding: 60px 20px;
    text-align: center;
    margin-top: -50px;

    position: relative;
    z-index: 4;
    margin-bottom: -50px;
    padding-bottom: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;


        
}

.target .features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px auto;
    max-width: 1000px;
   margin-top: 100px;
}

/* About Us Section */
.about {

    padding: 60px 20px;
    text-align: center;
    background: #CBD4E;


}

.about h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h3 {
    font-size: 24px;
    color: #007bff;
    margin-top: 15px;
}

.about-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 16px;
    margin: 5px 0;
}

.about-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.about-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
    font-family: Arial, sans-serif;
    padding: 0;
    text-align: center;
    background-color: #fff;

    position: relative;
    z-index: 3;
    margin-bottom: -50px;
    margin-top: 50px;
    /*padding: 50px;*/
    padding-bottom: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  
}

.team-section {
    padding: 50px 20px;
    background: white;
}

.team h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;    
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: auto;
    align-items: center;
}

.team-member img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info {
    text-align: left;
}

.team h3 {
    margin: 0;
    font-size: 1.5em;
}

.team h4 {
    margin: 0px;
    font-size: 1.5em;
    font-size: 1em;
}

.team p {
    margin: 5px 0;
    font-size: 1.1em;
}

.team ul {
    margin-left: 0px;
    margin-top: 10px;
    font-size: 0.9em;
    list-style: none;
}

/* Timeline Section */
.timeline {
    background: #2f3335;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;

    background-attachment: fixed;
    position: relative;
    z-index: 2; /* Bring this section in front */
    margin-bottom: -50px; /* Move bottom edge forward */
    padding-bottom: 80px; /* Give space to create the overlap effect */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;


}

.timeline h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 100px;
}


      /* About US */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .image {
            width: 100%;
            height: 200px; /* Set a fixed height */
            background-color: lightgray;
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Keeps the image fixed */
        }

        /* Assign Different Images */
        .image-1 { background-image: url('images/image1.png'); }
        .image-2 { background-image: url('images/image2.png'); }
        .image-3 { background-image: url('images/image3.png'); }
        .image-4 { background-image: url('images/image4.png'); }

.about-container h3 {
   padding-bottom: 15px;
} 

.about-container ul {
            background-color: #2f3335;
            padding: 20px;
            list-style: none;
            border-radius: 20px;
            color: #fff;
        }

.about-container ul li {
  padding-bottom: 5px;
  padding-top: 5px;
}

.timeline-item {
    width: 65%;
    padding: 20px;
    background: white;
    border-left: 5px solid #007BFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Remove default list styling */
.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Timeline List Items */
.timeline-content ul li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #444;
    padding: 6px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.timeline-content ul li:hover {
    transform: translateX(5px);
    color: #0056b3;
}

/* Icon Styling */
.timeline-content .icon {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #007BFF;
}

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;

    position: relative;
    z-index: 1;
    margin-bottom: -100px;
    /*padding: 50px;*/
    padding-bottom: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;  
}

.services h2 {
    font-size: 36px;
    margin-bottom: 10px;
    margin-top: 50px;
    color: #333;
}

.services p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-right:10px;
    margin-left:10px;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service img {
    width: 75%;
    height: auto;
    border-radius: 10px;
}

.service h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #007bff;
}

.service p {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
}

.service a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service a:hover {
    color: #0056b3;
}

.service:hover {
    transform: scale(1.05);
}



.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

}

.feature img {
    width: 50px;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #444;
}

.feature i {
    color: #007BFF;
    font-size: 3em;
    padding-bottom: 10px;
}

.feature:hover {
    transform: scale(1.05);
}

/* Team Section */
.solution {
    font-family: Arial, sans-serif;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;

    position: relative;
    z-index: 1;
    margin-bottom: -50px;
    margin-top: 50px;
    /*padding: 50px;*/
    padding-bottom: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  
}

.solution-section {
    padding: 50px 20px;
    background: white;
}

.solution h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;    
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    align-items: center;
}

/* Solution Section */
.solution-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50px;
    object-fit: cover;
}

.solution-info {
    text-align: left;
}

.solution h3 {
    margin: 0;
    font-size: 1.5em;
}

.solution h4 {
    margin: 0px;
    font-size: 1.5em;
    font-size: 1em;
}

.solution p {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
}

.solution ul {
    margin-left: 0px;
    margin-top: 10px;
    font-size: 0.9em;
    list-style: none;
}

/* Client Logos */
.client-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.client-logos img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.client-logos img:hover {
    transform: scale(1.1);
}

#hidden1 {
  background: url("images/service1-img.jpg") center/cover no-repeat;

    /*background-attachment: fixed;*/
      background-size: cover;
}

#hidden2 {
  background: url("images/service2-img.jpg") center/cover no-repeat;

    /*background-attachment: fixed;*/
      background-size: cover;
}


/* Align logo to the left */
#logo {
    text-align: left;
}

/* Adjust logo size */
#logo img {
    max-width:300px;
    height: auto;
}


.detail-product-info {
  padding: 0 150px;
}

.detail-product-info ul li {
  text-align: left;
  padding-bottom: 10px;
}

/* GENERAL RESPONSIVE STYLES */
@media (max-width: 768px) {

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-info {
        text-align: center;
    }
    .solution {
      padding: 15px;
    }
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-info {
        text-align: left;
        margin-left: 30px;
       margin-right: 30px;
    }
  
    .services-grid {
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service {
        padding: 15px;
    }

    .service h3 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
    }

  #hidden1, #hidden2 {
    display: none;
  }


}
