* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f7fa;
}
header{
    position:relative;
    top:0;
    z-index:1000;
    background: #C1121F;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}
nav{
    max-width:1200px;
    margin:auto;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
nav h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}
nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}
nav a {
    text-decoration: none;
    color: #123A6F;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
nav a:hover {
    color: white;
    border-bottom: 2px solid white;
}
.nav-button{
    background:#C1121F;
    color:white;
    padding:14px 26px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}
.nav-button:hover{
    background:#99131B;
    transform:translateY(-2px);
}
.floating-button{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#C1121F;
    color:white;
    padding:18px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    opacity:1;
    transition:opacity .3s ease, transform .3s ease;
}
.floating-button:hover{
    background:#99131B;
    transform:translateY(-3px);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #b2b3b4;
    padding: 10px 20px;
    border-radius: 12px;
}
.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #123A6F;   /* Navy blue */
    letter-spacing: 0.5px;
}
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:#757575;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    background: white;
    padding: 40px 50px 60px;
    border-radius: 18px;
    max-width: 1100px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo {
    display: block;
    width: 30%;
    max-width: 900px;
    margin:0 auto 35px auto;
    border-radius: 12px;
}
.hero-banner{
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 12px 3-px rgba(0,0,0,.35)
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #123A6F;
    margin-top: 30px;
    margin-bottom: 20px;
}
.hero h2 {
    font-size:1.7rem;
  margin-bottom: 20px;
  color: #ff4444;
}
.hero p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}
.button {
    display: inline-block;
    background: #C1121F;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,.2);
}
.button:hover {
    background: #9B0D17;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.secondary {
    background: white;
    color: #123A6F;
    border: 2px solid #123A6F;
}
.secondary:hover {
    background: #123A6F;
    color: white;
}
section {
  padding: 70px 10%;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #b5121b;
}
.classes{
    border-top:6px solid #C1121F;
}
.why-us{
    padding:90px 8%;
    background:white;
    text-align:center;
}
.why-us h2{
    font-size:2.7rem;
    color:#123A6F;
    margin-bottom:15px;
}
.section-intro{
    max-width:750px;
    margin:0 auto 55px;
    color:#555;
    font-size:1.15rem;
    line-height:1.8;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.why-card{
    background:#F7F7F7;
    padding:35px;
    border-radius:16px;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.why-icon{
    font-size:3rem;
    margin-bottom:18px;
}
.why-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.why-card p{
    color:#555;
    line-height:1.7;
}
.about{
    padding:90px 8%;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    background:white;
}
.about-text{
    max-width:850px;
}
.about-image{
    margin-top:40px;
}
.about-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
@media (max-width:900px){
.about{
grid-template-columns:1fr;
text-align:center;
}
}
.aed{
    padding:90px 8%;
    background:#F4F6F8;
    text-align:center;
}
.aed h2{
    color:#123A6F;
    font-size:2.6rem;
    margin-bottom:20px;
}
.aed-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin:50px 0;
}
.aed-card{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}
.aed-card:hover{
    transform:translateY(-8px);
}
.aed-card h3{
    color:#C1121F;
    margin-bottom:15px;
}
.aed-card p{
    color:#555;
    line-height:1.7;
}
.classes{
    padding:90px 8%;
    background:#f4f4f4;
    text-align:center;
}
.classes h2{
    font-size:2.6rem;
    color:#123A6F;
    margin-bottom:20px;
}
.classes .section-intro{
    max-width:800px;
    margin:0 auto 60px;
    color:#555;
    font-size:1.15rem;
    line-height:1.8;
}
.card-container{
    display:flex;
    width:100%;
}
.card-container .card{
    display: block;
    width: 100%;
    max-width: 900px;
    margin:0 15px;
}
.card{
    width:100%;
    max-width:900px;
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.icon{
    font-size:55px;
    margin-bottom:20px;
}
.card h3{
    color:#123A6F;
    font-size:1.8rem;
    margin-bottom:15px;
}
.card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}
.card ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}
.card ul li{
    padding:8px 0;
    color:#444;
}
footer {
  background: #1c2d4d;
  color: white;
  text-align: center;
  padding: 25px;
}
.service-area{
    background:#f5f5f5;
    padding:90px 20px;
    text-align:center;
}
.service-area h2{
    color:#0d2b52;
    font-size:2.5rem;
    margin-bottom:20px;
}
.service-text{
    max-width:750px;
    margin:auto;
    color:#555;
    font-size:1.1rem;
    line-height:1.7;
    margin-bottom:40px;
}
.states{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:40px;
}
.states span{
    background:#c1121f;
    color:white;
    padding:12px 22px;
    border-radius:50px;
    font-weight:bold;
    letter-spacing:.5px;
    transition:.3s;
}
.states span:hover{
    transform:translateY(-4px);
    background:#0d2b52;
}
.service-area .button{
    font-size:1.1rem;
    padding:15px 35px;
}
.contact{
    background: linear-gradient(135deg, #123A6F 0%, #0D2F57 100%);
    color: white;
    padding: 100px 8%;
    text-align: center;
}
.contact h2{
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.contact .section-intro{
    color: rgba(255,255,255,.9);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.8;
}
.contact-container{
    max-width: 750px;
    margin: auto;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:18px 22px;
    font-size:1rem;
    border:none;
    border-radius:12px;
    background:white;
    transition:.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(255,255,255,.25);
}
.contact-form textarea{
    min-height:180px;
    resize:vertical;
}
.contact-form .button{
    margin-top:15px;
    align-self:center;
    background:#C1121F;
    color:white;
    padding:18px 40px;
    border:none;
    border-radius:50px;
    font-size:1.1rem;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}
.contact-form .button:hover{
    background:#99131B;
    transform:translateY(-3px);
}