/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background:linear-gradient(rgba(29, 106, 165, 0.8),rgba(40, 118, 155, 0.75)),
    url("../assets/herosection.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content{
    flex:1;
}
.hero-tag{
    display:inline-block;
    background:#ffe8d9;
    color:#ff6600;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}
.hero-content h1{
    font-size:60px;
    line-height:1.2;
    color:#011118;
    margin-bottom:25px;
}
.hero-content h1 span{
    background:linear-gradient(90deg,#ff6600,#ffd700,#ff6600);
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation: shine 3s linear infinite;
}
@keyframes shine{
    to{
        background-position:200% center;
    }
}
.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#ece3e3;
    margin-bottom:35px;
}
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.btn-primary{
    text-decoration:none;
    background:#ff6600;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}
.btn-primary:hover{
    transform:translateY(-3px);
}
.btn-secondary{
    text-decoration:none;
    background:#021f2c;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}
.btn-secondary:hover{
    transform:translateY(-3px);
}
.hero-image{
    flex:1;
    text-align:center;
}
.hero-image img{
    width:100%;
    max-width:700px;
    height:auto;
    border-radius:10px;
}
@media(max-width:992px){
    .hero{
        padding:50px 5%;
        gap:30px;
    }
    .hero-content h1{
        font-size:45px;
    }
    .hero-content p{
        font-size:17px;
    }

}
@media(max-width:768px){
    .hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:40px 20px;
        min-height:auto;
    }
    .hero-content h1{
        font-size:35px;
    }
    .hero-content p{
        font-size:16px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-image img{
        max-width:100%;
    }

}
@media(max-width:480px){
    .hero-content h1{
        font-size:28px;
    }
    .hero-image img{
        max-width:90%;
        height:auto;
        margin-top:40px;
    }
    .hero-content p{
        font-size:15px;
    }
    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}
/*WHAT WE OFFER SECTION*/
.services-section {
    padding: 100px 8%;
    background: linear-gradient(90deg,#1C68A4,#5fb0d6);
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title h2{
    font-size:42px;
    color:#111314;
    margin-bottom:15px;
}
.section-title p{
    max-width:700px;
    margin:auto;
    color:#f1eded;
    line-height:1.8;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.service-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.service-card:hover{
    transform:translateY(-10px);
}
.service-card img{
    width:100%;
    height:auto;
    border-radius:10px;
}
.service-card h3{
    color:#025d86;
    margin-bottom:15px;
    font-size:22px;
}
.service-card p{
    color:#666;
    line-height:1.7;
}
.service-btn,
.company-btn{
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    background:#025d86;
    color:#fff;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.service-btn::after{
    content:"➜";
    transition:.3s;
}
.company-btn::after{
    content:"➜";
    transition:.3s;
}
.service-btn:hover, .company-btn:hover{
    background:#ff6804;
}
.service-btn:hover::after,
.company-btn:hover::after{
    transform:translateX(5px);
}
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}
@media(max-width:768px){
    .services-section{
        padding:60px 20px;
    }
    .section-title h2{
        font-size:32px;
    }
    .services-grid{
        grid-template-columns:1fr;
    }
    .service-card{
        padding:25px;
    }

}
/* ==========================
   WHY CHOOSE US SECTION
========================== */
.why-choose-section {
    padding: 80px 8%;
    background:linear-gradient(rgba(25, 105, 167, 0.8),rgba(17, 96, 133, 0.75)),
    url("../assets/companyGrowth.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.why-title{
    text-align:center;
    margin-bottom:60px;
}
.why-title h2{
    font-size:42px;
    color:#111314;
    margin-bottom:15px;
}
.why-title p{
    max-width:700px;
    margin:auto;
    color:#f3e8e8;
    line-height:1.8;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #ff6600;
}
.why-card:hover{
    transform:translateY(-8px);
}
.why-icon{
    font-size:45px;
    margin-bottom:20px;
}
.why-card h3{
    color:#021f2c;
    margin-bottom:15px;
    font-size:22px;
}
.why-card p{
    color:#666;
    line-height:1.8;
}
@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .why-title h2{
        font-size:34px;
    }

}
@media(max-width:768px){
    .why-choose-section{
        padding:60px 20px;
    }
    .why-grid{
        grid-template-columns:1fr;
    }
    .why-title h2{
        font-size:28px;
    }
    .why-card{
        padding:30px 20px;
    }
}
/* =========================
   TECHNOLOGY SECTION
========================= */
.technology-section{
    padding:100px 8%;
    background: linear-gradient(90deg,#1C68A4,#5fb0d6);
    box-shadow: 0 2px 15px rgba(7, 7, 7, 0.2); 
    text-align:center;
}
.technology-title{
    margin-bottom:60px;
}
.technology-title h2{
    font-size:42px;
    color:#111314;
    margin-bottom:15px;
}
.technology-title p{
    max-width:750px;
    margin:auto;
    color:#ffffff;
    line-height:1.8;
    font-size:16px;
}
.technology-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}
.tech-card{
    background:#fff;
    padding:25px 15px;
    border-radius:15px;
    font-size:20px;
    font-weight:700;
    color:#025d86;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    cursor:pointer;
    transition:.4s;
    position:relative;
    overflow:hidden;
    animation:leftRight 4s ease-in-out infinite;
}
@keyframes leftRight{
    0%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(15px);
    }
    100%{
        transform:translateX(0);
    }
}
.tech-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,transparent, rgba(30, 79, 238, 0.2),transparent);
    transition:.6s;
}
.tech-card:hover::before{
    left:100%;
}
@media(max-width:992px){
    .technology-grid{
        grid-template-columns:repeat(3,1fr);
    }
    .technology-title h2{
        font-size:36px;
    }
}
@media(max-width:768px){
    .technology-section{
        padding:70px 20px;
    }
    .technology-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
    .technology-title h2{
        font-size:30px;
    }
    .tech-card{
        padding:20px 10px;
        font-size:18px;
    }
}
@media(max-width:480px){
    .technology-grid{
        grid-template-columns:1fr;
    }
    .technology-title h2{
        font-size:26px;
    }
    .technology-title p{
        font-size:14px;
    }
    .tech-card{
        font-size:17px;
    }
}
/* =========================
   PROCESS SECTION
========================= */
.process-section{
    padding:100px 8%;
    background: linear-gradient(90deg,#1C68A4,#5fb0d6);
    box-shadow: 0 2px 15px rgba(7, 7, 7, 0.2); 
}
.process-title{
    text-align:center;
    margin-bottom:60px;
}
.process-title h2{
    color:#111314;
    font-size:42px;
    margin-bottom:15px;
}
.process-title p{
    color:#fff;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.process-flow{
    position:relative;
    max-width:1000px;
    margin:auto;
}
.process-flow::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#ff6600;
    transform:translateX(-50%);
}
.flow-step{
    display:flex;
    align-items:center;
    margin-bottom:50px;
    position:relative;
}
.flow-step:nth-child(even){
    flex-direction:row-reverse;
}
.flow-number{
    width:80px;
    height:80px;
    background:#ff6600;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
    z-index:2;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}
.flow-content{
    width:45%;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    margin:0 30px;
    transition:.4s;
}
.flow-content:hover{
    transform:translateY(-10px);
}
.flow-content h3{
    color:#025d86;
    margin-bottom:10px;
}
.flow-content p{
    color:#555;
    line-height:1.7;
}
@media(max-width:768px){
    .process-flow::before{
        left:30px;
    }
    .flow-step,
    .flow-step:nth-child(even){
        flex-direction:row;
        align-items:flex-start;
    }
    .flow-number{
        width:60px;
        height:60px;
        font-size:22px;
    }
    .flow-content{
        width:calc(100% - 90px);
        margin-left:20px;
        margin-right:0;
    }
    .process-title h2{
        font-size:30px;
    }
}
/* Our Company Section */
.company-section{
    min-height:500px;
    background-image:linear-gradient(135deg,#1274a8,#517e92,#9ebac7);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
}
.company-content{
    max-width:900px;
    text-align:center;
}
.company-content h2{
    font-size:48px;
    margin-bottom:25px;
    color:#111314;
}
.company-content p{
    font-size:18px;
    line-height:1.9;
    color:#f3e8e8;
}
@media(max-width:768px){
    .company-section{
        min-height:auto;
        padding:60px 20px;
    }
    .company-content h2{
        font-size:32px;
    }
    .company-content p{
        font-size:16px;
    }
}
/* ==========================
   OUR BUSINESS SECTION
========================== */
.business-section {
    padding: 80px 8%;
    background: linear-gradient(135deg,#1274a8,#517e92,#9ebac7);
}
.business-container {
    max-width: 1200px;
    margin: 0 auto;
}
.business-title {
    text-align: center;
    margin-bottom: 60px;
}
.business-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color:#111314;
}
.business-title p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #f3e8e8;
}
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.business-card {
    background: rgba(255, 253, 253, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
}
.business-card:hover {
    transform: translateY(-8px);
}
.business-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}
.business-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.business-card p {
    line-height: 1.7;
    color: #f3e8e8;
}
.achievement-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.achievement-box {
    text-align: center;
}
.achievement-box h2 {
    font-size: 3rem;
    color:#111314;
    margin-bottom: 10px;
}
.achievement-box span {
    font-size: 1rem;
}
.cta-area {
    text-align: center;
}

.cta-area h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-area p {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
    color: #f3e8e8;
}
.business-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #2e3fda;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}
.business-btn:hover {
    background: #e65c00;
}
/* =========================
   CLIENTS SECTION
========================= */
.clients-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
}
.clients-section {
    padding: 80px 5%;
    text-align: center;
}

.clients-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #021f2c;
    font-weight: 700;
}

.client-box {
    border-radius: 12px;
    padding: 25px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.client-box:hover {
    transform: translateY(-8px);
}

.client-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.client-box:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 768px) {
    .clients-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-box {
        height: 120px;
        padding: 20px;
    }

    .client-box img {
        max-height: 60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .clients-row {
        grid-template-columns: 1fr;
    }

    .client-box {
        height: 110px;
    }

    .client-box img {
        max-height: 55px;
    }
}
@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .achievement-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .business-title h2 {
        font-size: 2.3rem;
    }
}
@media (max-width: 768px) {
    .business-section {
        padding: 60px 5%;
    }
    .business-grid {
        grid-template-columns: 1fr;
    }
    .achievement-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .business-title h2 {
        font-size: 2rem;
    }
    .business-title p {
        font-size: 0.95rem;
    }
    .business-card {
        padding: 25px 20px;
    }
    .business-card img {
        width: 70px;
        height: 70px;
    }
    .achievement-box h2 {
        font-size: 2.5rem;
    }
    .cta-area h3 {
        font-size: 1.6rem;
    }
    .business-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .business-title h2 {
        font-size: 1.7rem;
    }
    .business-card h3 {
        font-size: 1.1rem;
    }
    .business-card p,
    .cta-area p {
        font-size: 0.9rem;
    }
    .achievement-box h2 {
        font-size: 2rem;
    }
}