/* General Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #0E1111;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: #0E1111;
    margin-bottom: 0.5em;
  }
  
  p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 1em;
  }
  
  #icon {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 900;
  }
  
/* Section 1 Hero */
/* Section 1 Hero with background animation */
.section1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;

  animation: fade 18s infinite;
  will-change: opacity;
}

/* Individual images */
.bg1 {
  background-image: url("Geo-BG.jpg");
  animation-delay: 0s;
}

.bg2 {
  background-image: url("Tech-BG.jpg");
  animation-delay: 6s;
}

@keyframes fade {
  0%   { opacity: 0; }   /* start invisible */
  20%  { opacity: 1; }   /* fade in */
  50%  { opacity: 1; }   /* fully visible */
  70%  { opacity: 0; }   /* fade out */
  100% { opacity: 0; }   /* stay invisible until next cycle */
}
  
  #icon {
    width: auto;
    background: #F16C22;
    border-radius: 20px;
    color: #FFFFFF;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    padding: 20px 30px;
    z-index: 1;
    position: relative;
  }
  
  /* Section 2 About */
  .section2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    background: #FFFFFF;
  }
  .sec-left img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
  }
  .sec-right {
    flex: 1;
    min-width: 280px;
  }
  
  /* Section 3 Logos */
  .section3 {
    background: #F16C22;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
  }
  .section3 img {
    height: 60px;
    object-fit: contain;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #icon {
      font-size: 1.8rem;
    }
    .section1 {
      background-attachment: fixed;
    }
    .section2 {
      flex-direction: column;
      text-align: center;
    }
    .sec-left, .sec-right {
      margin: 0;
    }
    .section3 img {
      height: 45px;
    }
  }

  



