*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#f5f5f5;
color:#333;
line-height:1.6;
}
.header img
{
	height:95px;
	
  	width:110px;
}
/* ==========================
   Fixed Header
========================== */
.header
{
    position: fixed;          /* Keeps header fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background-color: #000000;
    text-align: left;
    padding-left: 50px;
    padding-top: 6px;
    padding-bottom: 5px;

    box-sizing: border-box;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
}

.header ul
{
    display: inline-flex;
    list-style: none;
    color: #fff;
    margin: 0;
    padding: 0;
}

.header ul li
{
    width: 160px;
    margin: 25px;
    padding: 15px;
}

.header ul li a
{
    text-decoration: none;
    color: #fff;
}

.header ul li:hover
{
    background: #FF0A0A;
    border-radius: 10px;
}

.header .fa
{
    margin-right: 8px;
}

/* Prevent page content from hiding behind the fixed header */
/* body
{
    margin: 0;
    padding-top: 0px;   /* Adjust if your header height changes */
} */

/* Moving Image Banner */

.moving-banner{
    width:100%;
    overflow:hidden;
    background:#ffffff;
    padding:20px 0;
}

.banner-track{
    display:flex;
    width:max-content;
    animation:moveRight 40s linear infinite;
}

.banner-track img{
    width:900px;
    height:auto;
    margin-right:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* Left → Right Animation */

@keyframes moveRight{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

#footer{
    background:#000000;
    color:#fff;
    text-align:center;
    padding:20px;
}

section{
padding:80px 0px;
}


.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.about-text h2{
    color:#003366;
    margin-bottom:20px;
    font-size:34px;
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 18px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: 1px;
    letter-spacing: 0.2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-top: 40px;      /* Space at the top */
    padding-bottom: 40px;   /* Space at the bottom */
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#0056b3;
    margin-bottom:15px;
}

.card p{
     line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: 1px;
    letter-spacing: 0.2px;
}


	
/* Services*/

.services {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.services img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.services-text h2{
    color:#003366;
    margin-bottom:20px;
    font-size:34px;
}

.services-text p {
    line-height: 1.9;
    margin-bottom: 10px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: 1px;
    letter-spacing: 0.2px;
}

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{

    background:#fff;
    border-radius:12px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.4s;
}

.service-card:hover{

    transform:translateY(-8px);
}

.service-card i{

    font-size:55px;
    color:#007bff;
    margin-bottom:20px;
}

.service-card h3{

    color:#003366;
    margin-bottom:15px;
}

.service-card p{

     line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: 1px;
    letter-spacing: 0.2px;
}

/* Education*/

.Education {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.Education img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.Education-text h2{
    color:#003366;
    margin-bottom:20px;
    font-size:34px;
}

.Education-text p {
    line-height: 1.9;
    margin-bottom: 10px;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: 1px;
    letter-spacing: 0.2px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
transition:.4s;
}

.card:hover{
transform:translateY(-8px);
}

.card i{
font-size:45px;
color:#0b70d1;
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:#003366;
}

.card ul{
padding-left:20px;
}

.card ul li{
margin-bottom:8px;
}

.highlight{
background:#003366;
color:white;
padding:70px 10%;
text-align:center;
}

.highlight h2{
font-size:36px;
margin-bottom:20px;
}

.highlight p{
font-size:20px;
max-width:900px;
margin:auto;
}

.benefits{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.benefit{
background:white;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.benefit i{
font-size:40px;
color:#0b70d1;
margin-bottom:15px;
}

.cta{
background:#0b70d1;
padding:70px 20px;
text-align:center;
color:white;
}

.cta h2{
font-size:38px;
margin-bottom:20px;
}

.cta p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#fff;
color:#0b70d1;
padding:15px 35px;
font-size:18px;
text-decoration:none;
border-radius:40px;
font-weight:bold;
transition:.4s;
}

.btn:hover{
background:#003366;
color:#fff;
}

/* Social Cards */

.social-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.social-card{

background:#fff;
border-radius:15px;
padding:35px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.1);
transition:.4s;

}

.social-card:hover{

transform:translateY(-10px);

}

.social-card i{

font-size:60px;
margin-bottom:20px;

}

.social-card h3{

margin-bottom:15px;

}

.social-card p{

margin-bottom:25px;
color:#555;

}

.btn{

display:inline-block;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
transition:.4s;

}

.facebook{
color:#1877F2;
}

.facebook-btn{
background:#1877F2;
color:#fff;
}

.instagram{
color:#E1306C;
}

.instagram-btn{
background:#E1306C;
color:#fff;
}

.linkedin{
color:#0077B5;
}

.linkedin-btn{
background:#0077B5;
color:#fff;
}

.youtube{
color:#FF0000;
}

.youtube-btn{
background:#FF0000;
color:#fff;
}

.twitter{
color:#1DA1F2;
}

.twitter-btn{
background:#1DA1F2;
color:#fff;
}

.whatsapp{
color:#25D366;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

.btn:hover{

background:#003366;

}



/* Why Follow */

.features{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:50px;

}

.feature{

background:white;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.feature i{

font-size:45px;
color:#0b70d1;
margin-bottom:15px;

}

/*Contact*/

/* *{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f4f7fb;
} */

.contact-section{
padding:60px;
}

.container1{

display:flex;

gap:50px;

flex-wrap:wrap;

}

.left{

flex:1;

min-width:300px;

}

.left h1{

font-size:40px;

margin-bottom:20px;

color:#003366;

}

.left p{

line-height:28px;

font-size:18px;

color:#444;

}

.info{

margin-top:40px;

}

.info p{

margin:15px 0;

font-size:18px;

}

.info i{

color:#0077cc;

margin-right:10px;

}

.right{

flex:1;

min-width:350px;

background:white;

padding:35px;

border-radius:12px;

box-shadow:0 0 20px rgba(0,0,0,.1);

}

.right h2{

margin-bottom:25px;

color:#003366;

}

form{

display:flex;

flex-direction:column;

}

input,

textarea,

select{

padding:15px;

margin-bottom:18px;

font-size:16px;

border:1px solid #ccc;

border-radius:6px;

}

button{

padding:16px;

background:#0077cc;

color:white;

border:none;

border-radius:6px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#003366;

}

@media(max-width:900px){

.container{

flex-direction:column;

}

}