body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
    text-decoration: none;
}

.logo span {
    color: #2563eb;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

.nav a:hover {
    color: #2563eb;
}

.btn-primary {
    padding: 10px 18px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    height: 420px;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30,58,138,0.8), rgba(37,99,235,0.6));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 42px;
    color: #fff;
}

.hero-buttons {
    margin-top: 50px;
}

.hero-buttons a {
    margin: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

/* GRID */
.section {
    padding: 60px;
    background: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
/*
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.card {
    text-align: center;
}

.card a {
    text-decoration: none;
}

.card img {
    width: 50px;
}

.card h3 {
    color: #1e3a8a;
    font-size: 16px;
}

.image_box {
    background: #f2f7ff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 7px;
}

.btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


/** Why Section **/
/* WRAPPER */
.why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: #f9fbff;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.why-text {
    flex: 1;
    min-width: 300px;
}

.why-text h2 {
    font-size: 36px;
    color: #1e293b;
    line-height: 1.4;
}

.why-text span {
    color: #2563eb;
}

/* RIGHT GRID */
.why-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 20px;
    justify-content: center;
}

/* CARD BASE */
.why-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    border-left: 4px solid;
}

/* COLORS (IMPORTANT) */
.why-box.blue { border-color: #2563eb; }
.why-box.lightblue { border-color: #06b6d4; }
.why-box.green { border-color: #22c55e; }
.why-box.orange { border-color: #f59e0b; }

/* TEXT */
.why-box h3 {
    margin: 0;
    font-size: 18px;
}

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

/* Advantage Section */
.advantage {
    padding: 60px;
    text-align: center;
    background: #fff;
}

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

.adv-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #f9fbff, #eef2ff);
    text-align: center;
}

.testimonial-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1e293b;
}

/* GRID */
.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    transition: 0.3s;
}

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

/* QUOTE ICON */
.quote {
    font-size: 50px;
    color: #2563eb;
    line-height: 0;
}

/* TEXT */
.testimonial-card p {
    font-size: 15px;
    color: #555;
    margin: 15px 0 25px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.user h4 {
    margin: 0;
    font-size: 14px;
}

.user span {
    font-size: 12px;
    color: #777;
}

/* Contact.php */
.container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
    display:flex;
    gap:30px;
}

.content{
    flex:1;
}

.form-box{
    width:450px;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

h1{
    margin-top:0;
    color:#003366;
}

.field{
    margin-bottom:15px;
}

label{
    display:block;
    margin-bottom:5px;
    font-weight:600;
}

input,select,textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
    box-sizing:border-box;
}

button{
    width:100%;
    background:#0066cc;
    color:#fff;
    border:none;
    padding:14px;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#004fa3;
}

.content p {
    line-height: 25px;
    text-align: justify;
}

.content ul li {
    list-style: none;
    line-height: 30px;
}

.content h2 {
    color: #003366;
    text-align: center;
}

.content p {
    text-align: center;
    line-height: 25px;
}


/* thank you */
.aligncenter {
    text-align: center;
    padding: 100px 0px;
}

.aligncenter p {
    text-align: center;
}

/* about us */
/* =========================
   ABOUT PAGE CSS
========================= */
/* HERO SECTION */

.about-hero{
    background:linear-gradient(rgba(30,58,138,.8),rgba(37,99,235,.8)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600');
    background-size:cover;
    background-position:center;
    padding:120px 20px;
    text-align:left;
    color:#fff;
}

.about-hero h1{
    font-size:55px;
    margin-bottom:20px;
    color: #fff;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    text-align: left;
}

/* ABOUT STORY */

.about-story{
    padding: 0;
}

.about-row{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content{
    flex:1;
    min-width:300px;
}

.about-content h2{
    color:#1e3a8a;
    font-size:38px;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

/* STATS */

.stats-section{
    background:#fff;
    padding: 80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-card{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#2563eb;
    font-size:42px;
    margin:0;
}

.stat-card p{
    margin-top:10px;
    color:#666;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
}

.stats-container p, .stats-container ul li {
    line-height: 26px;
}

/* MISSION */

.mission-section{
    text-align:center;
}

.mission-section h2{
    color:#1e3a8a;
    font-size:40px;
    margin-bottom:25px;
}

.mission-section p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#555;
}

/* WHY US */

.why-us{
    background: #fff;
    padding: 40px 0 80px;
}

.why-us h2{
    text-align:center;
    color:#1e3a8a;
    margin-bottom:50px;
    font-size:40px;
}

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

.why-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.why-card img{
    width:70px;
    margin-bottom:20px;
}

.why-card h3{
    color:#1e3a8a;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* TEAM */

.team-section{
    padding:30px 0;
}

/* TESTIMONIALS */

.testimonial-section{
    background:#fff;
    padding:30px 0 80px;
}

.testimonial-section h2{
    text-align:center;
    color:#1e3a8a;
    margin-bottom:50px;
    font-size:40px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    font-style:italic;
}

.testimonial-card h4{
    margin-top:20px;
    color:#1e3a8a;
    text-align: center;
}

/* CTA */

.cta-section{
    background:linear-gradient(135deg,#1e3a8a,#2563eb);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
    color: #fff;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:30px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:768px){

    .about-hero h1{
        font-size:36px;
    }

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

    .about-content h2,
    .mission-section h2,
    .why-us h2,
    .testimonial-section h2,
    .cta-section h2{
        font-size:30px;
    }

    .about-row{
        flex-direction:column;
    }

    .stats-grid,
    .why-grid,
    .testimonial-grid{
        grid-template-columns:1fr;
    }
}

/* privacy page */
    .privacy-policy, .terms-policy {
        padding: 80px 0px;
    }

/* FOOTER */
.footer {
    background: #0b1f3a;
    color: #cbd5e1;
    padding: 60px 60px 20px;
    font-size: 14px;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: white;
}

/* MIDDLE STRIP */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #132a4a;
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
}

.footer-links ul li {
    display: inline-block;
    margin: 0px 10px 0px 0px;
}
.footer-links ul {
    display: block;
    margin: 0px;
    padding: 0px;
}

.footer-middle h5 {
    color: white;
    margin-bottom: 10px;
}

/* SOCIAL */
.social-icons span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #1e3a8a;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 6px;
    margin-right: 10px;
}

.social-icons span:last-child {
    margin-right: 0px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 15px;
    font-size: 12px;
    color: #94a3b8;
}
    