*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f5f7fb;
color:#333;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:600;
color:#198754;
}
.logo img{
height:50px;
}
.menu a{
position:relative;
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
font-size:15px;
padding:5px 0;
transition:all 0.3s ease;
}
.menu a:hover{
color:#0d2b5c;
}
.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}
.menu a.active{
color:#1e3a8a;
font-weight:600;
border-bottom:2px solid #1e3a8a;
padding-bottom:4px;
}
/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 8%;
background:linear-gradient(135deg,#eef3ff,#ffffff);
min-height:70vh;
gap:50px;
}

/* LEFT */

.hero-left{
max-width:540px;
}

.hero h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
color:#0d2b5c;
}

.hero h1 span{
color:#198754;
}

.hero p{
font-size:18px;
color:#555;
margin-bottom:30px;
line-height:1.6;
}

/* BUTTONS */

.hero-buttons a{
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:500;
margin-right:10px;
display:inline-block;
}

.btn-primary{
background:#0d2b5c;
color:white;
}

.btn-primary:hover{
background:#051a3b;
}

.btn-secondary{
border:2px solid #0d2b5c;
color:#0d2b5c;
}

.btn-secondary:hover{
background:#0d2b5c;
color:white;
}

/* RIGHT */

.hero-right img{
width:600px;
max-width:100%;
}

/* DIVIDER */

.divider{
height:40px;
}

/* SERVICES */

.section{
padding:50px 8%;
text-align:center;
}

.section h2{
font-size:30px;
margin-bottom:25px;
color:#0d2b5c;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
transition:0.3s;
text-align: left;
}

.card:hover{
transform:translateY(-5px);
}

/* ABOUT + SOFTWARE */

.about-card{
max-width:900px;
margin:40px auto;
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.about-card h2{
margin-bottom:20px;
color:#198754;
}

.about-card p{
line-height:1.7;
margin-bottom:15px;
}

/* SOFTWARE LIST */

.software-list{
list-style:none;
margin-top:20px;
}

.software-list li{
padding:12px 16px;
background:#f7f9fc;
margin-bottom:10px;
border-radius:6px;
border-left:4px solid #198754;
}

/* CONTACT */

.contact-card{
max-width:800px;
margin:40px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.contact-card h3{
text-align:center;
margin-bottom:25px;
color:#198754;
}

.contact-item{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
}


/* LOCATION SECTION */

.map-card{
width:100%;
max-width:1200px;
margin:40px auto;
background:#f3f6ff;
padding:30px;
border-radius:10px;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
text-align:center;
}

.map-card h2{
color:#0d2b5c;
margin-bottom:20px;
}

.map-container{
width:100%;
height:450px;
border-radius:8px;
overflow:hidden;
}

.map-container iframe{
width:100%;
height:100%;
border:0;
}


/* FOOTER */

.footer{
background:#198754;
color:white;
text-align:center;
padding:20px;
margin-top:60px;
}

/* MOBILE */

@media(max-width:768px){

.hero{
display:flex;
align-items:center;
justify-content:center;
padding:70px 8%;
background:linear-gradient(135deg,#eef3ff,#ffffff);
text-align:center;
}

.hero-right img{
width:300px;
margin-top:30px;
}

.menu{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:20px;
}

.menu a{
margin:10px 0;
}

.menu-toggle{
display:block;
}

}

/* SOFTWARE GRID */

.software-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

/* SOFTWARE CARD */

.software-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
transition:0.3s;
text-align:center;
}

.software-card:hover{
transform:translateY(-5px);
}

.software-card h3{
margin-bottom:10px;
color:#0d2b5c;
}

.software-card p{
font-size:14px;
color:#666;
margin-bottom:20px;
}

/* BUTTON */

.price-btn{
display:inline-block;
padding:10px 18px;
background:#0d2b5c;
color:white;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.price-btn:hover{
background:#051a3b;
}

.section-subtitle{
max-width:900px;
margin:auto;
margin-top:10px;
color:#666;
font-size:16px;
}

.software-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

.software-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
transition:0.3s;
text-align:center;
}

.software-card:hover{
transform:translateY(-6px);
}

.software-card h3{
margin-bottom:10px;
color:#0d2b5c;
}

.software-card p{
font-size:14px;
color:#666;
margin-bottom:18px;
}

.price-btn{
display:inline-block;
padding:10px 18px;
background:#0d2b5c;
color:white;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.price-btn:hover{
background:#051a3b;
}

/* STATS SECTION */

.stats-section{
background:#0d2b5c;
color:white;
padding:80px 8%;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.stat-box{
padding:20px;
}

.stat-box h2{
font-size:48px;
margin-bottom:10px;
color:#4fc3f7;
font-weight:700;
}

.stat-box p{
font-size:18px;
opacity:0.9;
}


/* FOOTER */

.footer{
background:#0d2b5c;
color:white;
padding:60px 8% 30px 8%;
margin-top:80px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
max-width:1200px;
margin:auto;
}

.footer-column h3{
margin-bottom:15px;
}

.footer-column h4{
margin-bottom:15px;
}

.footer-column p{
margin-bottom:8px;
font-size:14px;
opacity:0.9;
}
.footer-column {
 a {color :#fff;}   
}
.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.2);
font-size:14px;
}
.title-separator{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin:15px 0 40px 0;
}

/* lines */

.title-separator .line{
width:60px;
height:2px;
background:#cfd8e3;
}

/* circle */

.title-separator .circle{
width:10px;
height:10px;
border:2px solid #0d2b5c;
border-radius:50%;
background:white;
}

/* CLIENTS SECTION */

.clients-section{
padding:70px 8%;
text-align:center;
}

.section-subtitle{
max-width:700px;
margin:auto;
margin-bottom:40px;
color:#666;
font-size:16px;
}

/* GRID */

.clients-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

/* CLIENT CARD */

.client-card{
background:white;
padding:15px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
transition:0.3s;
text-align:center;
}

.client-card:hover{
transform:translateY(-6px);
}

/* LOGO */

.client-logo{
height:60px;
margin-bottom:15px;
object-fit:contain;
}

/* COMPANY NAME */

.client-card h3{
font-size:18px;
margin-bottom:10px;
color:#0d2b5c;
}

/* DESCRIPTION */

.client-card p{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:15px;
}

/* TAG */

.client-tag{
display:inline-block;
background:#eef3ff;
color:#0d2b5c;
padding:6px 12px;
border-radius:20px;
font-size:12px;
font-weight:500;
}

.client-logo-box{
height:70px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
border-radius:6px;
padding:10px;
}



/* logo image */

.client-logo{
max-height:40px;
max-width:100%;
object-fit:contain;
}

.globus-logo{
background:none;
filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(1523%) hue-rotate(202deg) brightness(93%) contrast(101%);
}
.clients-note{
text-align:center;
margin-top:25px;
font-size:18px;
color:#0d2b5c;
font-weight: bold;
}



/* SOFTWARE FEATURE STYLE */

.software-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:40px;
}

.feature-item{
text-align:left;
/*padding-bottom:20px;
border-bottom:1px solid #e5e7eb;*/
position:relative;
padding-left:20px;
}

/* bullet */

.feature-item::before{
content:"•";
position:absolute;
left:0;
top:2px;
font-size:22px;
color:#333;
}

.feature-item h4{
font-size:18px;
margin-bottom:6px;
color:#111;
}

.feature-item p{
font-size:14px;
color:#666;
line-height:1.6;
}

@media(max-width:768px){
.software-features{
grid-template-columns:1fr;
}
}

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
padding:60px 20px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.hero-right img{
width:320px;
margin-top:20px;
}

.hero-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
}

.hero-buttons a{
margin:0;
}

}

@media(max-width:480px){

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
}

}

@media(max-width:768px){

.software-list-grid{
grid-template-columns:1fr;
}

}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.client-card a {
    text-decoration: none;
    color: inherit;
}

.visit-link {
    color: #00bcd4;
    font-weight: 600;
    font-size: 14px;
}

.visit-link:hover {
    text-decoration: underline;
}

