/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
}

/* ================= HEADER ================= */

.top-header{
    background: linear-gradient(90deg,#0b4ea2,#1fa84f);
    color:#fff;
    padding:12px 30px;
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:center;
}

.header-left span{
    display:block;
    font-size:14px;
    line-height:1.4;
}

.header-center{
    text-align:center;
}

.header-center h1{
    font-size:26px;
    font-weight:700;
}

.header-center p{
    font-size:13px;
    opacity:0.9;
}

.header-right{
    text-align:right;
}

.header-right a{
    color:#fff;
    text-decoration:none;
    margin-left:18px;
    font-weight:600;
}

.header-right a:hover{
    text-decoration:underline;
}

/* HEADER RESPONSIVE */
@media(max-width:768px){
    .top-header{
        grid-template-columns:1fr;
        text-align:center;
        gap:10px;
    }
    .header-right{
        text-align:center;
    }
}

/* ================= HERO ================= */

.hero{
    height:85vh;
    background:url('../images/hero.jpg') center/cover no-repeat;
    position:relative;
    color:#fff;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:1;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    font-size:18px;
}

.hero-small{
    margin-top:10px;
    font-size:16px;
    opacity:0.9;
}

/* ================= SECTIONS ================= */

section{
    padding:60px 40px;
}

.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:30px;
}

.section-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:40px;
    font-size:17px;
}

.light-bg{
    background:#fafafa;
}

/* ================= EXPERTISE ================= */

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.expertise-box{
    background:#f4f4f4;
    padding:20px;
    text-align:center;
    border-radius:6px;
}

.expertise-box img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:6px;
    margin-bottom:15px;
}

/* ================= SERVICES ================= */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-box{
    background:#f4f4f4;
    padding:25px;
    border-left:6px solid #1fa84f;
}

/* SERVICES HERO SLIDER */

.slider-bg{
    height:55vh;
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    animation:slideBg 18s infinite;
}

@keyframes slideBg{
    0%{background-image:url('../images/slide1.jpg');}
    33%{background-image:url('../images/slide2.jpg');}
    66%{background-image:url('../images/slide3.jpg');}
    100%{background-image:url('../images/slide1.jpg');}
}

.slider-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.services-hero-content{
    position:relative;
    z-index:1;
    height:100%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.services-hero-content h1{
    font-size:42px;
    margin-bottom:12px;
}

.services-hero-content p{
    font-size:18px;
    max-width:750px;
}

/* SERVICE CARDS */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.service-card h3{
    padding:15px;
    color:#0b4ea2;
}

.service-card p{
    padding:0 15px 20px;
}

/* ================= ABOUT ================= */

.about-header{
    color:#0b4ea2;
    font-weight:bold;
    text-align:center;
    margin-bottom:30px;
}

.two-column{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.about-text,
.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
    max-width:100%;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ================= CONTACT ================= */

.contact-section{
    background:linear-gradient(135deg,#0f5fa8,#16a085);
    padding:80px 20px;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    color:#fff;
}

.contact-title{
    text-align:center;
    font-size:32px;
}

.contact-desc{
    text-align:center;
    max-width:850px;
    margin:20px auto 40px;
}

.contact-box{
    background:#fff;
    color:#333;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
    padding:40px;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
}

.contact-form textarea{
    height:120px;
    resize:none;
}

.contact-form button{
    width:100%;
    background:linear-gradient(135deg,#0b4ea2,#1fa84f);
    color:#fff;
    border:none;
    padding:14px;
    font-size:16px;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
}

.contact-form button:hover{
    background:linear-gradient(135deg,#083b7a,#178a40);
}

.contact-info h3{
    margin-bottom:15px;
    color:#0f5fa8;
}

/* CONTACT RESPONSIVE */
@media(max-width:768px){
    .contact-box{
        grid-template-columns:1fr;
    }
}

/* ================= FOOTER ================= */

footer{
    background:linear-gradient(90deg,#0b4ea2,#1fa84f);
    color:#fff;
    padding:40px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.3);
    padding-top:15px;
    font-size:14px;
}
/* ===== TOP CONTACT BAR ===== */
.top-bar{
    background:#1f3dbd;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    font-size:14px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-left img{
    height:40px;
}

.company-name{
    font-size:20px;
    font-weight:700;
}

.top-right span{
    margin-left:20px;
}

/* ===== MAIN NAVBAR ===== */
.main-header{
    background:linear-gradient(90deg,#0b4ea2,#1fa84f);
    padding:15px 30px;
}

.nav-container{
    display:flex;
    justify-content:flex-end;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:30px;
    font-weight:600;
}

nav a:hover{
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
    .top-bar{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .nav-container{
        justify-content:center;
    }

    nav a{
        margin:0 12px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: linear-gradient(90deg, #1f4ed8, #16a34a);
    color: white;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-left img {
    height: 45px;
}

.top-left h2 {
    margin: 0;
    font-size: 22px;
}

.top-left p {
    font-size: 13px;
    opacity: 0.9;
}

.top-right span {
    margin-left: 20px;
    font-size: 14px;
}

/* NAVBAR */
.main-nav {
    background: #0f172a;
    text-align: center;
    padding: 12px 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-size: 16px;
    font-weight: 500;
}

.main-nav a:hover {
    color: #38bdf8;
}

/* HERO */
.hero {
    height: 420px;
    background: url("../images/hero1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

.hero-small {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* FOOTER */
footer {
    background: #020617;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: auto;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
}

.hero-small {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}
/* CONTACT PAGE FULL BACKGROUND */
.contact-bg {
    min-height: 100vh;
    background: url('../images/contact-bg.jpg') center/cover no-repeat;
    position: relative;
}

/* Dark overlay */
.contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Keep content above overlay */
.contact-section{
    background:url('../images/contact-bg.jpg') center/cover no-repeat;
    padding:80px 20px;
    position:relative;
}

/* REMOVE overlay blocking clicks */
.contact-section::after{
    content:none;
}

/* FORM CARD */
.contact-section{
    background: url('../images/contact-bg.jpg') center/cover no-repeat;
    padding: 80px 20px;
    position: relative;
}

.contact-box{
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
/* CONTACT PAGE BACKGROUND */
.contact-bg {
    min-height: 100vh;
    background: url("../images/contact-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* GLASS EFFECT CONTAINER */
.contact-box {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    padding: 40px;

    background: rgba(255, 255, 255, 0.30); /* 30% transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* FORM */
.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contact-form button {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* CONTACT INFO */
.contact-info {
    flex: 1;
    color: #000;
}

/* SUCCESS MESSAGE */
.success-msg {
    margin-top: 10px;
    color: green;
    font-weight: bold;
}
/* BACKGROUND IMAGE */
.contact-bg {
    min-height: 100vh;
    background-image: url("../images/contact-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* GLASS CARD */
.glass-card {
    display: flex;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    padding: 40px;

    background: rgba(255, 255, 255, 0.25); /* glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contact-form button {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* INFO */
.contact-info {
    color: #000;
}

/* SUCCESS MSG */
.success-msg {
    display: none;
    color: green;
    margin-top: 10px;
    font-weight: bold;
}
