* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    width: 100%;
  }
.banner {
  background-image: url('/images/img1.jpg');
  width: 100vw;
  height: 85vh;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;

  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  font-family: Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  padding: 0 5%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Desktop (Large Screens) --- */
@media (min-width: 1201px) {
  .banner {
    height: 60vh;
    background-size: cover;
    background-position: center center;
    width: 100vw;
    padding: 0 5%; /* balanced spacing */
  }
}

/* --- Large Tablets / iPads (Landscape) --- */
@media (max-width: 1200px) and (min-width: 992px) {
  .banner {
    height: 40vh;
    background-size: contain;
    background-position: center;
    background-color: transparent;
    padding: 0; /* remove white space */
    justify-content: center;
    text-align: center;
  }
}

/* --- Tablets / iPads (Portrait) --- */
@media (max-width: 991px) and (min-width: 768px) {
  .banner {
    height: 60vh;
    width: 100vw;
    background-size: contain;
    background-position: center center;
    background-color: transparent;
    padding: 0; /* remove white space */
    justify-content: center;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 2rem);
  }
}

/* --- Mobile Devices (Portrait) --- */
@media (max-width: 767px) and (min-width: 481px) {
  .banner {
    height: 55vh;
    width: 100vw;
    background-size: contain;
    background-position: center center;
    background-color: transparent;
    padding: 0; /* remove white space */
    justify-content: center;
    text-align: center;
    font-size: clamp(1rem, 4vw, 1.8rem);
  }
}

/* --- Small Phones --- */
@media (max-width: 480px) {
  .banner {
    height: 20vh;
    width: 100vw;
    background-size: contain;
    background-position: center;
    background-color: transparent;
    padding: 0; /* remove white space */
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
  }
}



  

.bout{
    color: #c59443 !important;
}

.welcome{
    color: #1c274f;
}

.three-column-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
    /* background-color: #f5f5f5; */
  }

  .column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    /* background: white; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
  }

  .column h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
  }

  .column p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  .aosc-welcome-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
    color: #1b1e3d;
  }
  
  .aosc-welcome-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .aosc-welcome-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    object-fit: cover;
    display: block;
  }
  
  .aosc-welcome-text {
    flex: 1 1 500px;
  }
  
  .aosc-welcome-text h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .aosc-welcome-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
  }

  
  .aosc-solutions-services {
    padding: 80px 20px;
    background: #f7f7f7;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .aosc-solutions-header h2 {
    font-size: 32px;
    color: #1b1e3d;
    margin-bottom: 10px;
  }
  
  .aosc-solutions-header p {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
  }
  
  .aosc-solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .aosc-service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 30px 20px;
    max-width: 300px;
    flex: 1 1 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .aosc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  
  .aosc-service-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1b1e3d;
  }
  
  .aosc-service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1b1e3d;
  }
  
  .aosc-service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .aosc-footer {
    background-color: #131f4c;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .aosc-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .aosc-footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  
  .aosc-footer-logo-img {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .aosc-footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .aosc-footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
  }
  
  .aosc-footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .aosc-footer-col ul li {
    margin-bottom: 10px;
  }
  
  .aosc-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .aosc-footer-col ul li a:hover {
    color: #fff;
  }
  
  .aosc-footer-col p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .aosc-social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: opacity 0.3s ease;
  }
  
  .aosc-social-icons a:hover {
    opacity: 0.7;
  }
  