html {
    scroll-behavior: smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f4f6f9;
color:#333;
line-height:1.6;
}



/* HEADER */

.main-header{
display:flex;
justify-content:space-between;
align-items:center;
background: linear-gradient(135deg, #0a3d91 0%, #1e5bb8 100%);
padding:20px 40px;
color:white;
position:sticky;
top:0;
z-index:999;
box-shadow:0 3px 12px rgba(0,0,0,0.15);
}


/* LOGO AREA */

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo{
height:85px;
}

.title h1{
font-size:28px;
font-weight:bold;
}

.title p{
font-size:14px;
opacity:0.85;
}



/* NAVIGATION */

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:16px;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:#ffd700;
}



/* HERO SLIDER */

.hero{
width:100%;
/* reduce slider height so images appear smaller and more of them is visible */
height:60vh; /* adjust as needed, e.g. 50vh for even smaller */
}

.swiper-slide{
display:flex;
align-items:center;
justify-content:center;
/* ensure full image is visible instead of cropping */
background-size:contain;
background-position:center;
background-repeat:no-repeat;
}

.hero-content{
background:rgba(0,0,0,0.55);
padding:40px;
border-radius:10px;
text-align:center;
color:white;
max-width:550px;
}

.hero-content h2{
font-size:36px;
margin-bottom:10px;
}

.hero-content p{
font-size:18px;
}



/* ARTICLES SECTION */

.articles{
padding:60px 40px;
background:white;
}

.articles h2{
text-align:center;
font-size:28px;
margin-bottom:35px;
}

.article-card{
display:flex;
align-items:center;
gap:20px;
background:#f9f9f9;
padding:18px;
border-radius:10px;
text-decoration:none;
color:#333;
transition:0.3s;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.article-card:hover{
background:#eef2ff;
transform:translateY(-4px);
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.article-card img{
width:150px;
height:95px;
object-fit:cover;
border-radius:8px;
}

.article-content h3{
font-size:20px;
margin-bottom:6px;
}

.article-content p{
font-size:14px;
color:#555;
}

/* BLOG PREVIEW */

.blog-preview{
padding:60px 40px;
background:#f7f9fc;
}

.blog-preview .section-intro{
text-align:center;
margin-bottom:30px;
}

.blog-preview .section-intro h2{
font-size:28px;
margin-bottom:10px;
color:#0a3d91;
}

.blog-preview .section-intro p{
max-width:760px;
margin:0 auto;
color:#555;
font-size:16px;
}

.blog-preview-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
gap:20px;
margin-top:20px;
}

.section-cta{
text-align:center;
margin-top:24px;
}

.blog-link-btn{
display:inline-block;
background:linear-gradient(135deg, #0a3d91 0%, #1e5bb8 100%);
color:white;
padding:12px 24px;
border-radius:999px;
font-weight:bold;
text-decoration:none;
transition:0.3s;
}

.blog-link-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(10,61,145,0.2);
}

/* BLOG PAGE */

.blog-hero{
background:linear-gradient(135deg, #0a3d91 0%, #1e5bb8 100%);
color:white;
padding:70px 40px 50px;
text-align:center;
}

.blog-hero h1{
font-size:clamp(28px, 4vw, 42px);
margin-bottom:12px;
}

.blog-hero p{
max-width:760px;
margin:0 auto;
font-size:18px;
opacity:0.95;
}

.blog-grid{
display:flex;
flex-direction:column;
gap:18px;
padding:40px 40px 60px;
background:#f7f9fc;
}

.blog-card{
display:flex;
align-items:flex-start;
gap:20px;
background:white;
padding:18px;
border-radius:12px;
text-decoration:none;
color:#333;
box-shadow:0 3px 12px rgba(0,0,0,0.06);
transition:0.3s;
position:relative;
overflow:hidden;
}

.blog-card:hover{
transform:translateY(-2px);
box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

.blog-card img{
width:220px;
height:140px;
object-fit:cover;
border-radius:8px;
flex-shrink:0;
margin-top:4px;
}

.blog-card .blog-content{
display:flex;
flex-direction:column;
justify-content:center;
min-width:0;
}

.blog-card .meta{
font-size:12px;
text-transform:uppercase;
letter-spacing:0.12em;
color:#0a3d91;
font-weight:bold;
margin-bottom:8px;
}

.blog-card h3,
.blog-card h2{
font-size:20px;
margin-bottom:8px;
color:#111;
line-height:1.35;
}

.blog-card p{
font-size:14px;
color:#555;
line-height:1.7;
margin:0;
}

@media(max-width:768px){
.blog-card{
flex-direction:column;
align-items:flex-start;
}

.blog-card img{
width:100%;
height:180px;
}
}


/* CORE SERVICES */

.services{
padding:60px 40px;
background:#f4f6f9;
}

.services h2{
text-align:center;
font-size:28px;
margin-bottom:35px;
color: #0a3d91;
}

.services .grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}

.service{
display:flex;
align-items:center;
gap:20px;
background:white;
padding:18px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
text-decoration:none;
color:#333;
transition:0.3s;
}

.service:hover{
transform:translateY(-4px);
background:#f6f9ff;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service img{
width:130px;
height:100px;
object-fit:cover;
border-radius:8px;
}

.service h3{
font-size:20px;
margin-bottom:6px;
}

.service p{
font-size:14px;
color:#555;
}



/* ABOUT BUTTON */

.about-button{
padding:60px;
text-align:center;
background:white;
}

.about-button button{
background: linear-gradient(135deg, #0a3d91 0%, #1e5bb8 100%);
color:white;
border:none;
padding:16px 38px;
font-size:18px;
border-radius:8px;
cursor:pointer;
transition:0.3s;
box-shadow: 0 4px 15px rgba(10, 61, 145, 0.3);
}

.about-button button:hover{
background: linear-gradient(135deg, #072a66 0%, #0a3d91 100%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(10, 61, 145, 0.4);
}



/* CONTACT PAGE */

.contact-container{
padding:60px 20px;
max-width:600px;
margin:auto;
}

.contact-container h2{
text-align:center;
margin-bottom:30px;
font-size:26px;
}

form{
display:flex;
flex-direction:column;
gap:14px;
}

input, textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;
}

textarea{
resize:none;
}

button.submit{
background:#0a3d91;
color:white;
border:none;
padding:14px;
font-size:16px;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}

button.submit:hover{
background:#072a66;
}



/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:35px;
margin-top:40px;
}

footer p{
margin-bottom:6px;
font-size:14px;
}



/* FLOATING SUPPORT ICONS */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:22px;
text-decoration:none;
box-shadow:0 3px 12px rgba(0,0,0,0.3);
}

.x-support{
position:fixed;
bottom:85px;
right:20px;
background:black;
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:20px;
text-decoration:none;
box-shadow:0 3px 12px rgba(0,0,0,0.3);
}



/* RESPONSIVE DESIGN */

@media(max-width:768px){

.main-header{
flex-direction:column;
gap:10px;
text-align:center;
}

.logo{
height:70px;
}

nav{
margin-top:10px;
}

.hero-content h2{
font-size:24px;
}

.hero-content p{
font-size:15px;
}

.article-card{
flex-direction:column;
align-items:flex-start;
}

.service{
flex-direction:column;
align-items:flex-start;
}

.service img{
width:100%;
height:auto;
}

}

/* ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}