
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
}


header {
    background: linear-gradient(90deg, #003366, #0055aa);
    color: white;
    padding: 10px 20px;
    text-align: left 20px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding-left: 90px;
}


section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.company-profile, .mission-vision, .tagline {
    padding: 0px 20px;
}
.blue {
    color: #003366;
}

.ornge {
    color: #FF6600;
}


.company-profile h2 {
    color: #FF6600;
    margin-bottom: 25px;
    font-size: 2rem;
    margin-left: 40px;
}

.company-profile p {
    margin-bottom: 20px;
    font-size: 1.1rem;
   margin-left: 40px;
}


.mission-vision {
    background: #ffe6e6;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 0; 
}

.mission-vision h3 {
    color: #FF6600;
    margin-bottom: 20px;
    font-style: bold;
}

.mission-vision p {
    font-size: 1rem;
}

.tech-image {
    text-align: center;
    margin-top: 25px;
    color: #FF6600;
}

.tech-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.tech-image img:hover {
    transform: scale(1.05);
}

.profile-mission-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
}

.company-profile, .mission-vision {
    flex: 1;
    min-width: 300px;
}

.tagline {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../includes/comppic1.jpg');
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

  .tagline-content {
    position: relative;
    z-index: 2;
  }

  .tagline-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .tagline-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

.tagline button {
    background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tagline button:hover {
    background: white;
  color: #000000;
}


footer {
    background: #003366;
    color: white;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-section {
    flex: 1;
    margin: 0 20px;
    color: black;
}


.footer-logo {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
}


.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a img {
    width: 30px;
    height: 30px;
}


.footer-links h3,
.footer-technology h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-technology ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-technology ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-technology ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links ul li a:hover,
.footer-technology ul li a:hover {
    color: #0077cc;
}


.footer-contact p {
    font-size: 14px;
    margin: 10px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #0077cc;
}
.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}



@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Existing CSS here... */

/* Responsive for Mobile Screens */
@media (max-width: 768px) {
  
  header {
    text-align: center;
    padding: 15px 10px;
    font-size: 1.2rem;
    padding-left: 0;
  }

  .profile-mission-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }

  .company-profile, .mission-vision {
    min-width: 100%;
    padding: 20px 10px;
    text-align: center;
    margin-left: 0;
  }

  .company-profile h2, .company-profile p {
    margin-left: 0;
  }

  .tagline {
    height: 80vh;
    padding: 0 20px;
  }

  .tagline-content h1 {
    font-size: 2rem;
  }

  .tagline-content p {
    font-size: 1.2rem;
  }

  .tech-image img {
    max-width: 300px;
    width: 90%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  .footer-section {
    margin: 20px 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links ul li, .footer-technology ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a, .footer-technology ul li a {
    font-size: 13px;
  }
  
  .copyright {
    font-size: 0.7rem;
  }
}


