*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:#ffffff;
    color:#1f2937;
    line-height:1.6;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:40px;
}

.logo span{
    font-weight:700;
    font-size:18px;
    color:#111827;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
    align-items:center;
}

nav ul li a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

/* BUTTONS */
.btn-primary{
    background:#2563eb;
    color:white !important;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#2563eb;
    color:white;
}

/* HERO */
.hero{
    padding:140px 0 80px;
    background:#f9fafb;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.tagline{
    color:#2563eb;
    font-weight:600;
    font-size:13px;
    letter-spacing:1px;
}

.hero-text h1{
    font-size:44px;
    margin:15px 0;
    color:#111827;
}

.hero-text p{
    font-size:16px;
    color:#4b5563;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* PARTNERS */
.partners{
    padding:60px 0;
    text-align:center;
}

.partners h2{
    margin-bottom:30px;
    font-size:26px;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
    color:#6b7280;
    font-weight:600;
}

/* SECTION HEADER */
.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:32px;
    margin-bottom:10px;
}

.section-header p{
    color:#6b7280;
}

/* SOLUTIONS */
.solutions{
    padding:80px 0;
    background:#ffffff;
}

.solution-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    padding:25px;
    border-radius:10px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.card i{
    font-size:30px;
    color:#2563eb;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

/* STATS */
.stats{
    background:#2563eb;
    color:white;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stats h3{
    font-size:40px;
}

/* WHY US */
.why-us{
    padding:80px 0;
    background:#f9fafb;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:white;
    padding:25px;
    border-radius:10px;
    border:1px solid #e5e7eb;
}

.why-card h3{
    margin-bottom:10px;
}

/* TESTIMONIAL */
.testimonial{
    padding:80px 0;
    text-align:center;
}

.testimonial blockquote{
    font-size:22px;
    max-width:800px;
    margin:auto;
    color:#374151;
}

.testimonial span{
    display:block;
    margin-top:15px;
    color:#6b7280;
}

/* CTA */
.cta{
    background:#111827;
    color:white;
    padding:80px 0;
    text-align:center;
}

.cta h2{
    font-size:34px;
    margin-bottom:15px;
}

.cta p{
    color:#cbd5e1;
    margin-bottom:25px;
}

/* FOOTER */
footer{
    background:#f3f4f6;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

footer h3, footer h4{
    margin-bottom:10px;
}

footer p{
    color:#6b7280;
}

.copyright{
    text-align:center;
    margin-top:40px;
    color:#9ca3af;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.solution-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.partner-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:600px){

.solution-grid,
.why-grid,
.partner-grid,
.stats-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.hero-text h1{
    font-size:30px;
}

nav ul{
    display:none;
}

}
/* CONTACT PAGE */

.contact-hero{
    padding:140px 0 60px;
    background:#f9fafb;
    text-align:center;
}

.contact-hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.contact-hero p{
    color:#6b7280;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 0;
}

/* INFO */
.contact-info h2{
    font-size:28px;
    margin-bottom:10px;
}

.info-card{
    display:flex;
    gap:15px;
    align-items:flex-start;
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    margin-top:15px;
    background:white;
}

.info-card i{
    font-size:22px;
    color:#2563eb;
}

/* FORM */
.contact-form{
    background:white;
    border:1px solid #e5e7eb;
    padding:25px;
    border-radius:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #e5e7eb;
    border-radius:6px;
}

/* MAP */
.map-section{
    padding:60px 0;
    text-align:center;
}

.map-section iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:10px;
}

/* WHATSAPP BUTTON */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    color:white;
    font-size:28px;
    padding:12px 15px;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact-hero h1{
    font-size:28px;
}

}
/* QUOTE PAGE */

.quote-hero{
    padding:140px 0 60px;
    text-align:center;
    background:#f9fafb;
}

.quote-hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.quote-hero p{
    color:#6b7280;
}

/* GRID */
.quote-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 0;
}

/* INFO */
.quote-info ul{
    list-style:none;
    margin-top:20px;
}

.quote-info li{
    padding:10px 0;
    font-weight:500;
}

.highlight{
    margin-top:20px;
    padding:20px;
    background:#eef2ff;
    border-left:4px solid #2563eb;
    display:flex;
    gap:10px;
    align-items:center;
}

/* FORM */
.quote-form{
    background:white;
    border:1px solid #e5e7eb;
    padding:25px;
    border-radius:10px;
}

.quote-form form{
    display:flex;
    flex-direction:column;
}

.quote-form label{
    margin-top:10px;
    font-weight:600;
    font-size:14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    padding:12px;
    margin-top:5px;
    border:1px solid #e5e7eb;
    border-radius:6px;
}

/* TRUST */
.trust{
    padding:60px 0;
    text-align:center;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    font-weight:600;
    color:#4b5563;
}

/* RESPONSIVE */
@media(max-width:768px){

.quote-grid{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr 1fr;
}

}
/* CAREER PAGE */

.career-hero{
    padding:140px 0 60px;
    text-align:center;
    background:#f9fafb;
}

.career-hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.career-hero p{
    color:#6b7280;
}

/* JOBS */
.jobs{
    padding:80px 0;
}

.jobs h2{
    text-align:center;
    margin-bottom:40px;
}

.job-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.job-card{
    border:1px solid #e5e7eb;
    padding:25px;
    border-radius:10px;
    background:white;
    transition:0.3s;
}

.job-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.tag{
    display:inline-block;
    margin-top:10px;
    background:#2563eb;
    color:white;
    padding:5px 10px;
    border-radius:5px;
    font-size:12px;
}

/* WHY CAREER */
.why-career{
    padding:80px 0;
    background:#f9fafb;
}

.why-career h2{
    text-align:center;
    margin-bottom:40px;
}

/* APPLY */
.apply{
    padding:80px 0;
}

.apply-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.apply-form form{
    background:white;
    padding:25px;
    border:1px solid #e5e7eb;
    border-radius:10px;
}

.apply-form input,
.apply-form select,
.apply-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #e5e7eb;
    border-radius:6px;
}

/* RESPONSIVE */
@media(max-width:768px){

.job-grid{
    grid-template-columns:1fr;
}

.apply-grid{
    grid-template-columns:1fr;
}

}