body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin:0;
background: #ffffff;
color: #333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background: #ffffff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
border-bottom: 1px solid #e0e0e0;
padding: 3px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:0px 0;
}

.logo{
display:flex;
align-items:center;
gap:15px;
margin: -5px 0;
}

.logo img{
width:100px;
height: auto;
margin: -10px 0;
}

.logo h2{
background: linear-gradient(135deg, #1E88E5 0%, #00BCD4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 24px;
margin: 0;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
transition: color 0.3s;
}

nav a:hover{
color: #007bff;
}

.hero{
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding:30px 0;
position: relative;
overflow: hidden;
}

.hero::before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
background-size: cover;
opacity: 0.1;
z-index: 1;
}

.hero .container{
position: relative;
z-index: 2;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
align-items: center;
}

.hero-text h1{
font-size:36px;
margin-bottom:10px;
line-height: 1.2;
}

.hero-text p{
font-size: 16px;
margin-bottom: 15px;
line-height: 1.6;
}

.hero-image{
width:100%;
max-width:500px;
border-radius:15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn{
background: #007bff;
border:none;
padding:15px 30px;
border-radius:8px;
cursor:pointer;
font-weight:600;
font-size: 16px;
color: white;
transition: background 0.3s, transform 0.2s;
}

.btn:hover{
background: #0056b3;
transform: translateY(-2px);
}

.hero-form{
background: white;
color: black;
padding:40px;
border-radius:15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-form h3{
color: #007bff;
margin-bottom: 20px;
text-align: center;
}

.hero-form input,
.hero-form select{
width:100%;
padding:12px;
margin:10px 0;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}

.hero-form input:focus,
.hero-form select:focus{
border-color: #007bff;
outline: none;
}

.services{
padding:80px 0;
background: #f8f9fa;
}

.services h2{
text-align: center;
color: #333;
margin-bottom: 50px;
font-size: 36px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:30px;
}

.card{
background: white;
padding:30px;
border-radius:15px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover{
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:20px;
}

.card i{
font-size: 60px;
color: #1E88E5;
margin-bottom: 20px;
display: block;
}

.card h3{
color: #007bff;
margin-bottom: 15px;
}

.why-choose{
padding:80px 0;
background: white;
}

.why-choose h2{
text-align: center;
color: #333;
margin-bottom: 50px;
font-size: 36px;
}

.reasons{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:30px;
}

.reason{
background: #f8f9fa;
padding:30px;
border-radius:15px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.reason:hover{
transform: translateY(-5px);
}

.reason img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:20px;
}

.reason i{
font-size: 60px;
color: #1E88E5;
margin-bottom: 20px;
display: block;
}

.reason h3{
color: #007bff;
margin-bottom: 15px;
}

.countries{
padding:80px 0;
background: #007bff;
color: white;
}

.countries h2{
text-align: center;
margin-bottom: 50px;
font-size: 36px;
}

.country-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
gap:30px;
text-align:center;
font-size:24px;
}

footer{
background: #333;
color: white;
text-align: center;
padding:30px;
font-size: 16px;
}

footer a {
color: #888;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

footer a:hover {
color: #1E88E5;
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.modal-content {
background-color: white;
margin: 10% auto;
padding: 40px;
border-radius: 15px;
width: 90%;
max-width: 500px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
animation: slideIn 0.3s ease-in;
}

@keyframes slideIn {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
color: #333;
text-align: center;
margin-bottom: 20px;
font-size: 28px;
}

.modal-content p {
text-align: center;
color: #666;
margin-bottom: 30px;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-item {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 10px;
transition: all 0.3s ease;
}

.contact-item:hover {
background: #e8f4f8;
transform: translateX(5px);
}

.contact-item i {
font-size: 24px;
color: #1E88E5;
width: 30px;
text-align: center;
}

.contact-item a {
text-decoration: none;
color: #1E88E5;
font-weight: 600;
font-size: 18px;
transition: color 0.3s ease;
}

.contact-item a:hover {
color: #00BCD4;
}

.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
transition: color 0.3s ease;
}

.close:hover,
.close:focus {
color: #333;
}
