/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#ffffff;

    color:#222;

    line-height:1.7;

    padding-top:90px;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#111;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 50px;

    z-index:1000;

    box-shadow:0 3px 12px rgba(0,0,0,.2);

}

.logo a{

    color:white;

    font-size:30px;

    font-weight:bold;

}

/* ==========================================
   NAVIGATION
========================================== */

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    font-weight:bold;

    transition:.3s;

}

nav a:hover{

    color:#007BFF;

}

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:32px;

    cursor:pointer;

}

/* ==========================================
   HERO
========================================== */

.hero{

    max-width:1300px;

    margin:auto;

    padding:80px 40px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.hero-text h2{

    font-size:48px;

    margin-bottom:25px;

    color:#111;

}

.hero-text p{

    font-size:20px;

    margin-bottom:35px;

    color:#555;

}

.hero-btn{

    display:inline-block;

    background:#005BBB;

    color:white;

    padding:15px 35px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.hero-btn:hover{

    background:#004080;

    transform:translateY(-3px);

}

.hero-image img{

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    width:100%;

    object-fit:cover;

}

/* ==========================================
   GENERAL SECTIONS
========================================== */

section{

    padding:80px 30px;

}

.section-heading{

    text-align:center;

    margin-bottom:50px;

}

.section-heading h2{

    font-size:36px;

    color:#111;

    margin-bottom:15px;

}

.section-heading p{

    color:#666;

    font-size:18px;

    max-width:700px;

    margin:auto;

}

.about{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-content h2{

    font-size:36px;

    color:#111;

    margin-bottom:25px;

}

.about-content p{

    font-size:17px;

    color:#444;

    text-align:justify;

    line-height:1.9;

}

/* ==========================================
   SLIDESHOW
========================================== */

.slideshow{

    width:100%;

}

.slideshow img{

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.slides{

    display:none;

}

/* ==========================================
   SERVICES
========================================== */

#services{

    background:#f8f9fb;

}

.services{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-box{

    background:white;

    padding:30px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.service-box h3{

    color:#005BBB;

    font-size:23px;

    margin-bottom:20px;

}

.service-box p{

    color:#555;

    line-height:1.8;

}

/* ==========================================
   CONTACT
========================================== */

#contact{

    background:white;

}

form{

    max-width:750px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}

form label{

    font-weight:bold;

    color:#222;

}

form input,
form select,
form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

    transition:.3s;

    font-family:Arial, Helvetica, sans-serif;

}

form textarea{

    min-height:180px;

    resize:vertical;

}

form input:focus,
form select:focus,
form textarea:focus{

    outline:none;

    border-color:#005BBB;

    box-shadow:0 0 8px rgba(0,91,187,.2);

}

button{

    background:#005BBB;

    color:white;

    border:none;

    padding:16px;

    font-size:17px;

    font-weight:bold;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#004080;

    transform:translateY(-2px);

}

button:disabled{

    opacity:.7;

    cursor:not-allowed;

}

/* ==========================================
   SUCCESS / ERROR MESSAGE
========================================== */

.response-message{

    display:none;

    padding:15px;

    border-radius:8px;

    text-align:center;

    font-weight:bold;

}

.response-message.success{

    background:#d4edda;

    color:#155724;

}

.response-message.error{

    background:#f8d7da;

    color:#721c24;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#111;

    color:white;

    padding:50px 20px;

    text-align:center;

}

footer h2{

    color:#007BFF;

    margin-bottom:15px;

    font-size:30px;

}

footer p{

    margin:10px 0;

    color:#ddd;

}

footer a{

    color:white;

    transition:.3s;

}

footer a:hover{

    color:#007BFF;

}

.footer-nav{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:20px;

}

.footer-nav a{

    font-weight:bold;

}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width:900px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        padding:60px 20px;

    }

    .hero-text h2{

        font-size:36px;

    }

    .hero-text p{

        font-size:18px;

    }

    .about{

        grid-template-columns:1fr;

        gap:35px;

    }

    .about-content{

        text-align:center;

    }

    .about-content p{

        text-align:left;

    }

    .slideshow img{

        height:320px;

    }

}

/* ==========================================
   PHONE
========================================== */

@media (max-width:768px){

    body{

        padding-top:80px;

    }

    header{

        padding:15px 20px;

    }

    .menu-toggle{

        display:block;

    }

    nav{

        display:none;

        position:absolute;

        top:70px;

        left:0;

        width:100%;

        background:#111;

        flex-direction:column;

        text-align:center;

        gap:0;

        padding:0;

        box-shadow:0 5px 15px rgba(0,0,0,.25);

    }

    nav.active{

        display:flex;

    }

    nav a{

        padding:18px;

        border-top:1px solid rgba(255,255,255,.1);

    }

    nav a:hover{

        background:#1d1d1d;

    }

    .hero{

        gap:30px;

    }

    .hero-text h2{

        font-size:30px;

        line-height:1.3;

    }

    .hero-text p{

        font-size:17px;

    }

    .hero-btn{

        width:100%;

        text-align:center;

    }

    .about-content h2{

        font-size:30px;

    }

    .about-content p{

        font-size:16px;

    }

    .slideshow img{

        height:250px;

    }

    section{

        padding:60px 20px;

    }

    .section-heading h2{

        font-size:30px;

    }

    .services{

        grid-template-columns:1fr;

    }

    .service-box{

        padding:25px;

    }

    .service-box h3{

        font-size:21px;

    }

    form{

        width:100%;

    }

    form input,
    form select,
    form textarea{

        font-size:16px;

    }

    button{

        width: 100%;

    }

.footer-nav{
  flex-direction: column;
  gap: 15px;

    }

}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px){

    .hero-text h2{

        font-size: 26px;

    }

    .hero-text p{

        font-size: 16px;

    }

    .logo a{

        font-size: 24px;

    }

    .slideshow img{

        height: 220px;

    }

    .about-content p{

        font-size: 15px;

    }

    .service-box{

        padding: 20px;

    }

    .service-box h3{

        font-size: 20px;

    }

    footer{

        padding: 40px 15px;

    }

}

/* ==========================================
   SMOOTH ANIMATIONS
========================================== */

.hero,
.about,
.service-box,
form{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity: 0;

        transform:t ranslateY(30px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}

#faq{

    background:#f8f9fb;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:white;

    padding:25px;

    margin-bottom:20px;

    border-radius:10px;

    box-shadow:0 4px 10px rgba(0,0,0,.08);

}

.faq-item h3{

    color:#005BBB;

    margin-bottom:10px;

}

.faq-item p{

    color:#555;

    line-height:1.8;

}