/* ===== GLOBAL ===== */

body{
    margin:0;
    font-family:Arial, sans-serif;
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:60px 0;
}

.light-bg{
    background:#f4f6f9;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}


/* ===== HEADER ===== */

header{
    background:#ffffff;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    padding:15px 0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:22px;
    font-weight:bold;
    color:#007bff;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:20px;
    font-size:14px;
}

nav a:hover{
    color:#007bff;
}


/* Active page highlight */
nav a.active {
    color: rgb(85, 85, 49);
  font-weight: bold;
  border-bottom: 3px solid rgb(85, 85, 49);
}



/* ===== HERO ===== */

.hero{
    background-image:url(Home1.png);
    background-size:cover;
    color:#fff;
    text-align:center;
    padding:100px 0;
}

.hero h1{
    font-size:36px;
}

.hero p{
    max-width:600px;
    margin:20px auto;
}

.btn{
    display:inline-block;
    padding:10px 25px;
    background:#fff;
    color:#007bff;
    text-decoration:none;
    border-radius:4px;
    font-weight:bold;
}

.btn:hover{
    background:#e2e6ea;
}


/* ===== INDUSTRIES ===== */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.industry-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.industry-card i{
    font-size:32px;
    color:#007bff;
    margin-bottom:10px;
}

.industry-card:hover{
    transform:translateY(-5px);
}


/* ===== VISION & MISSION ===== */

.vm-section{
    padding:60px 0;
    background:#f9f9f9;
}

.vm-wrapper{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.vm-card{
    width:48%;
    background:linear-gradient(to right,#007bff,#0056b3);
    padding:30px;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.vm-card h3{
    color:#fff;
    margin-bottom:15px;
}

.vm-card p{
    font-size:15px;
    line-height:1.7;
    color:#fafafa;
}

.vm-card ul{
    margin-top:15px;
    padding-left:20px;
}

.vm-card ul li{
    margin-bottom:8px;
}


/* ===== ABOUT PAGE ===== */

.about-image-full img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.about-card-block{
    max-width:900px;
    margin:-80px auto 0 auto;
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    position:relative;
}

.about-card-block h1{
    text-align:center;
    margin-bottom:30px;
}

.about-card-block h3{
    margin-top:25px;
    margin-bottom:10px;
}

.about-card-block p{
    line-height:1.6;
    color:#444;
}

.about-card-block ul{
    padding-left:20px;
}

.about-card-block ul li{
    margin-bottom:8px;
}

.about-quote{
    margin-top:25px;
    padding:15px;
    background:#f0f4f8;
    border-left:4px solid #0077ff;
    font-style:italic;
}


/* ===== SERVICE PAGE ===== */

.service-section{
    padding:100px;
}

.service-block{
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:80px;
}

.service-block.reverse{
    flex-direction:row-reverse;
}

.service-image img{
    width:100%;
    max-width:450px;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}

.service-text{
    flex:1;
}

.service-text h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-text p{
    font-size:16px;
    line-height:1.7;
    color:#555;
}


/* ===== CONTACT PAGE ===== */

.image-content{
    background:url('Home1.png') center/cover no-repeat;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.text-box{
   
    color:#fff;
    padding:20px 40px;
    border-radius:8px;
}

.contact-section{
    background:#f4f6f9;
    padding:80px 0;
}

.contact-container{
    max-width:1000px;
    margin:auto;
    display:flex;
    gap:50px;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-info{
    flex:1;
}

.contact-info h3{
    margin-top:15px;
    color:#007bff;
}

.contact-form{
    flex:1;
}

.contact-form h1{
    margin-bottom:20px;
}

.contact-form label{
    font-size:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-top:6px;
    margin-bottom:15px;
    border-radius:6px;
    border:1px solid #ddd;
}

.contact-form textarea{
    height:120px;
}

.contact-form button{
    background:#007bff;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#0056b3;
}


/* ===== PARTNER PAGE ===== */

.partner-hero{
    background:url('Partners.jpg') center/cover no-repeat;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    
    padding:40px;
    text-align:center;
    color:#fff;
}

.hero-overlay h1{
    font-size:36px;
}

.hero-overlay p{
    margin:10px 0 20px;
}

.about-partnership{
    padding:80px 0;
}

.reasons{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.reason-card{
    background:#fff;
    padding:30px;
    width:280px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.reason-card i{
    font-size:32px;
    color:#007bff;
    margin-bottom:10px;
}

.partner-section{
    background:#f4f6f9;
    padding:80px 0;
}

.partner-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.partner-card h2{
    text-align:center;
}

.partner-intro{
    text-align:center;
    margin-bottom:25px;
}

.partner-card input,
.partner-card textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:6px;
    border:1px solid #ddd;
}

.partner-card textarea{
    height:120px;
}

.btn-primary{
    background:#007bff;
    color:#fff;
    border:none;
    padding:12px;
    width:100%;
    border-radius:6px;
    cursor:pointer;
}

.btn-primary:hover{
    background:#0056b3;
}


/* ===== FOOTER ===== */

.footer{
    background:#111;
    color:#ccc;
    padding:40px 20px 15px;
}

.footer-content{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    max-width:1200px;
    margin:0 auto;
}

.footer-about,
.footer-contact,
.footer-social{
    flex:1;
    min-width:250px;
    margin-bottom:20px;
}

.footer h3,
.footer h4{
    color:#278cea;
    margin-bottom:10px;
}

.footer p,
.footer a{
    color:#ccc;
    font-size:0.95rem;
    text-decoration:none;
}

.footer a:hover{
    color:#278cea;
}

.footer-contact i{
    color:#278cea;
    margin-right:8px;
}

.footer-social a{
    margin-right:10px;
    font-size:1.3rem;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #333;
    padding-top:10px;
    margin-top:20px;
    font-size:0.9rem;
    color:#aaa;
}