/* Reset */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
 

/* Hero Section */
 
.hero {
    min-height: calc(20vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px; 
}

    .hero h1 {
        font-size: clamp(30px, 5vw, 70px);
        font-weight: 700;
        color: #1f2f5c;
        margin-bottom: 24px;
        margin-top: clamp(100px, 5vw, 80px);
    }

.hero .highlight {
  color: #f2c037;
}

.hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #c7d1e0;
    color: #1f2f5c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s ease;
    margin-bottom: clamp(50px, 5vw, 20px);
}

.btn-primary:hover {
  background-color: #b6c2d6;
}





/* 
===========================================================================================
Stats Section 
===========================================================================================
*/
.stats-section {
  background-image: url("../images/buildings.jpg"); /* replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
}

.stats-overlay {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(27, 52, 118, 0.9);
  border-radius: 28px;
  padding: 80px 60px;
  color: #ffffff;
}

    .stats-overlay h2 {
        text-align: center;
        font-size: clamp(24px, 2.5vw, 36px);
        line-height: 1.3;
        margin-bottom: 60px;
    }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(24px, 2.5vw, 42px);
    font-weight: 600;
    color: #f2c037;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-overlay {
    padding: 60px 30px;
  }
   
}

.client-p {
    font-size: clamp(18px, 2.5vw, 18px);
    font-weight: 400;
    color: #002f6c;
}
/* 
===========================================================================================
Solution Section 
===========================================================================================
*/

.solution-img {
    width: 100%;
    height:200px;
    object-fit: cover;
    border-radius: 20px;
}

.solution-hdr {
    padding-top:30px;
    font-size: 26px;
    color: #002f6c;
    font-weight: 600;
    text-align:left;
}
.solution-dtl {
    font-size: 20px;
    color: #002f6c;
    text-align: left;
    padding-right: 30px;
}

.solution-a {
    font-size: 18px;
    font-weight:400;
    color: #fbbf24;
    text-decoration: none;
}

.solution-a:hover {
    color: #002f6c;
}







    .solutions {
        padding: 80px 40px;
        background: #ffffff;
        font-family: "nato sans", Arial, sans-serif;
    }

.solutions-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0px;
}

        .solutions-header h2 {
            font-size: clamp(24px, 2.5vw, 36px);
            font-weight: 600;
            line-height: 1.4;
            color: #002f6c;
        }

        .solutions-header .highlight {
            color: #fbbf24;
        }

    .solutions-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .solution-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        height: 420px;
    }

        .solution-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 35, 102, 0.95), rgba(0, 35, 102, 0.6), rgba(0, 35, 102, 0.1) );
        color: #ffffff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

        .card-overlay h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .card-overlay p {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .card-overlay a {
            color: #fbbf24;
            font-weight: bold;
            text-decoration: none;
            font-size: 15px;
        }

            .card-overlay a:hover {
                text-decoration: underline;
            }
    /* 
===========================================================================================
EXPLORE WHAT’S POSSIBLE
===========================================================================================
*/

    div {
        border: solid 0px #000;
    }

    .dec-left {
        color: #002f6c;
        font-weight: 600;
        text-align: left;
        line-height: 1.4;
    }

    .dec-title {
        font-size: 20px;
        color: #002f6c;
        font-weight: 600;
    }

    .dec-desc {
        color: #002f6c;
        font-size: 18px;
        text-align: left;
    }


    .bt-section {
        padding: 10px 10px;
    }
    /* Layout */
    .bt-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
    /* Left */
    .bt-left h1 {
        font-size: clamp(22px, 2.5vw, 36px);
        font-weight: 700;
        color: #243a8f;
    }

    .highlight {
        color: #f2c94c;
    }
    /* Right */
    .bt-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .card {
        max-width: 280px;
    }

    .icon {
        font-size: 28px;
        margin-bottom: 16px;
        color: #243a8f;
    }

    .card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #243a8f;
    }

    .card p {
        font-size: 14px;
        color: #4a4a4a;
    }
    /* Footer CTA */
    .bt-footer {
        margin-top: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-text h2 {
        font-size: 28px;
        color: #243a8f;
        margin-bottom: 8px;
    }

    .footer-text p {
        font-size: 16px;
    }

    .footer-text span {
        color: #f2c94c;
    }
    /* Responsive */
    @media (max-width: 1024px) {
        .bt-container {
            grid-template-columns: 1fr;
        }

        .bt-right {
            grid-template-columns: 1fr;
        }

        .bt-footer {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }
    }

 