/* =====================================
   EDOT SYSTEM SOLUTIONS
   PROFESSIONAL WEBSITE STYLES
===================================== */

/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* VARIABLES */

:root{

--primary:#0A2342;
--secondary:#1D4ED8;
--accent:#38BDF8;
--dark:#081A30;
--light:#F8FAFC;
--white:#FFFFFF;
--text:#444;

--shadow:0 12px 30px rgba(0,0,0,.08);

--radius:18px;

--transition:.35s ease;

}

/* RESET */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--white);
color:var(--text);
overflow-x:hidden;

}

/* IMAGES */

img{

max-width:100%;
display:block;

}

/* LINKS */

a{

text-decoration:none;

}

/* LISTS */

ul{

list-style:none;

}

/* CONTAINERS */

.container{

width:min(1200px,92%);
margin:auto;

}

/* =====================================
            HEADER
===================================== */

header{

position:sticky;

top:0;

left:0;

width:100%;

padding:15px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(10,35,66,.96);

backdrop-filter:blur(10px);

z-index:999;

box-shadow:0 8px 25px rgba(0,0,0,.18);

transition:var(--transition);

}

/* LOGO */

.logo{

display:flex;

align-items:center;

}

.logo img{

height:110px;

width:auto;

transition:var(--transition);

}

/* NAVIGATION */

.navbar{

display:flex;

align-items:center;

gap:28px;

}

.navbar a{

color:white;

font-weight:500;

position:relative;

transition:var(--transition);

}

/* Underline */

.navbar a::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--accent);

transition:var(--transition);

}

.navbar a:hover{

color:var(--accent);

}

.navbar a:hover::after{

width:100%;

}

.active{

color:var(--accent)!important;

}

/* CALL BUTTON */

.call-btn{

padding:12px 24px;

background:var(--accent);

border-radius:40px;

color:white!important;

font-weight:600;

display:flex;

align-items:center;

gap:8px;

box-shadow:0 8px 20px rgba(56,189,248,.35);

transition:var(--transition);

}

.call-btn:hover{

transform:translateY(-3px);

background:var(--secondary);

}

/* =====================================
            HERO
===================================== */

.hero{

min-height:92vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

background-size:cover;

background-position:center;

position:relative;

}

.hero::before{

content:'';

position:absolute;

inset:0;

background:rgba(10,35,66,.72);

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

}

.hero-content h1{

font-size:4.5rem;

font-weight:800;

line-height:1.15;

color:white;

margin-bottom:25px;

}

.hero-content p{

font-size:1.25rem;

color:#dbe6ef;

line-height:1.9;

margin-bottom:35px;

}

/* BUTTONS */

.btn{

display:inline-block;

padding:16px 36px;

margin:10px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

}

.btn-primary{

background:var(--accent);

color:white;

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(56,189,248,.35);

}

.btn-secondary{

border:2px solid white;

color:white;

}

.btn-secondary:hover{

background:white;

color:var(--primary);

}

/* =====================================
        SECTION HEADINGS
===================================== */

.section{

padding:100px 8%;

}

.section-title{

text-align:center;

font-size:2.8rem;

font-weight:700;

color:var(--primary);

margin-bottom:60px;

}

/* =====================================
        SERVICES & CARDS
===================================== */

.services-grid,
.cards,
.feature-grid,
.footer-grid,
.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.card,
.feature,
.value-box,
.gallery-item{

background:var(--white);

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:all .35s ease;

}

.card:hover,
.feature:hover,
.value-box:hover,
.gallery-item:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card{

padding:40px;

}

.card h3{

font-size:1.5rem;

color:var(--primary);

margin-bottom:20px;

font-weight:700;

}

.card p{

line-height:1.9;

color:#555;

}

.card ul{

padding-left:20px;

margin-top:20px;

}

.card li{

margin-bottom:14px;

line-height:1.8;

position:relative;

}

/* =====================================
      ABOUT SECTION
===================================== */

.about{

background:var(--light);

}

.about-content{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-content img{

width:100%;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.about-text h2{

font-size:2.8rem;

color:var(--primary);

margin-bottom:20px;

}

.about-text p{

line-height:2;

font-size:1.05rem;

margin-bottom:20px;

}

/* =====================================
         FEATURES
===================================== */

.feature{

padding:35px;

text-align:center;

}

.feature i{

font-size:48px;

color:var(--accent);

margin-bottom:20px;

}

.feature h3{

color:var(--primary);

margin-bottom:15px;

font-size:1.4rem;

}

.feature p{

line-height:1.8;

}

/* =====================================
         VALUES
===================================== */

.values{

background:var(--light);

}

.value-box{

padding:35px;

text-align:center;

}

.value-box h3{

margin-bottom:18px;

color:var(--primary);

font-size:1.4rem;

}

.value-box p{

line-height:1.8;

}

/* =====================================
        STATISTICS
===================================== */

.stats{

background:var(--primary);

padding:90px 8%;

color:white;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

text-align:center;

}

.stat h2{

font-size:3rem;

color:var(--accent);

margin-bottom:10px;

font-weight:700;

}

.stat p{

font-size:1.1rem;

}

/* =====================================
        CTA
===================================== */

.cta{

background:linear-gradient(135deg,var(--primary),var(--dark));

color:white;

padding:100px 20px;

text-align:center;

}

.cta h2{

font-size:3rem;

margin-bottom:20px;

}

.cta p{

max-width:850px;

margin:auto;

line-height:2;

margin-bottom:35px;

font-size:1.1rem;

}

/* =====================================
         GALLERY
===================================== */

.gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.gallery-item{

position:relative;

cursor:pointer;

}

.gallery-item img{

width:100%;

height:280px;

object-fit:cover;

transition:.45s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item h3{

padding:22px;

text-align:center;

font-size:1.2rem;

color:var(--primary);

font-weight:600;

}

/* =====================================
       CONTACT SECTION
===================================== */

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:40px;

}

.contact-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

.contact-card h2{

color:var(--primary);

margin-bottom:25px;

}

.contact-card p{

line-height:2;

}

.contact-buttons{

display:flex;

flex-direction:column;

gap:18px;

margin-top:30px;

}

.contact-link{

background:var(--accent);

color:white;

padding:16px;

border-radius:12px;

font-weight:600;

text-align:center;

transition:.35s;

}

.contact-link:hover{

background:var(--secondary);

transform:translateY(-4px);

}

/* =====================================
        CONTACT FORM
===================================== */

form{
    background:var(--white);
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;
    padding:16px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    outline:none;
    transition:.3s;
    font-size:1rem;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:var(--accent);
    box-shadow:0 0 10px rgba(56,189,248,.25);

}

.form-group textarea{

    resize:none;
    min-height:180px;

}

/* =====================================
        FOOTER
===================================== */

footer{

    background:var(--dark);
    color:white;
    padding:70px 8%;

}

.footer-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

}

.footer-grid h3{

    margin-bottom:20px;
    color:white;

}

.footer-grid p,
.footer-grid a{

    color:#d5dbe4;
    line-height:2;
    text-decoration:none;
    transition:.3s;

}

.footer-grid a:hover{

    color:var(--accent);

}

.footer-bottom{

    margin-top:45px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

}

.footer-social{

    display:flex;
    gap:18px;

}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,.08);

    color:white;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--accent);
    transform:translateY(-4px);

}

/* =====================================
        WHATSAPP
===================================== */

.whatsapp{

    position:fixed;
    bottom:25px;
    right:25px;

    width:68px;
    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    transition:.35s;

    z-index:999;

}

.whatsapp:hover{

    transform:translateY(-6px) scale(1.08);

}

/* =====================================
        ANIMATIONS
===================================== */

.fade-in{

    opacity:0;
    transform:translateY(40px);
    transition:1s ease;

}

.fade-in.show{

    opacity:1;
    transform:translateY(0);

}

/* =====================================
        UTILITIES
===================================== */

.text-center{

    text-align:center;

}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.py{

    padding:100px 0;

}

/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

.hero-content h1{

    font-size:3rem;

}

.about-content{

    grid-template-columns:1fr;

}

.showcase{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

.footer-bottom{

    flex-direction:column;
    text-align:center;

}

.logo img{

    height:85px;

}

}

/* MOBILE */

@media(max-width:768px){

header{

    padding:15px 20px;

}

.navbar{

    display:none;

}

.hero{

    min-height:80vh;

    padding:20px;

}

.hero-content h1{

    font-size:2.3rem;

}

.hero-content p{

    font-size:1rem;

}

.section{

    padding:80px 20px;

}

.section-title{

    font-size:2rem;

}

.card,
.feature,
.value-box,
.contact-card{

    padding:30px;

}

.logo img{

    height:75px;

}

.call-btn{

    padding:10px 18px;
    font-size:.9rem;

}

.whatsapp{

    width:60px;
    height:60px;
    font-size:28px;

}

}

/* SMALL PHONES */

@media(max-width:480px){

.hero-content h1{

    font-size:2rem;

}

.section-title{

    font-size:1.8rem;

}

.btn{

    width:100%;
    text-align:center;

}

.call-btn{

    width:100%;
    justify-content:center;

}

}

.card h3 i,
.value-box h3 i{
    color:var(--accent);
    margin-right:10px;
}

/* ===========================
   EMERGENCY SECTION
=========================== */

.emergency{
    background:#0A2342;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.emergency h2{
    font-size:2.8rem;
    margin-bottom:20px;
}

.emergency p{
    color:#dbe6ef;
    margin-bottom:35px;
}

/* ===========================
   CONTACT PAGE
=========================== */

.hours{

    margin-top:40px;

}

.hours h2{

    color:var(--primary);

    margin-bottom:20px;

}

.hours p{

    margin-bottom:10px;

    line-height:1.8;

}

.map{

    margin-top:80px;

}

.map iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:20px;

    box-shadow:var(--shadow);

}

/* T-Shirt Printing Image */

.shirt-image{

    object-fit:contain !important;

    background:white;

    padding:10px;

}
/* Printing Project 12 */

.printing12{
    width:75%;
    height:220px;
    object-fit:contain;
    display:block;
    margin:20px auto;
}

/* Vehicle image */

.vehicle-image{
    width:60%;
    height:220px;
    object-fit:contain;
    display:block;
    margin:20px auto;
}

/* ============================= */
/* MOBILE NAVIGATION */
/* ============================= */

.menu-toggle{
display:none;
font-size:30px;
color:white;
cursor:pointer;
}

@media(max-width:900px){

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
}

.menu-toggle{
display:block;
}

.navbar{
display:none;
flex-direction:column;
position:absolute;
top:90px;
left:0;
width:100%;
background:#0A2342;
padding:20px 0;
z-index:999;
}

.navbar.active{
display:flex;
}

.navbar a{
padding:15px;
text-align:center;
width:100%;
border-bottom:1px solid rgba(255,255,255,.15);
}

.call-btn{
margin:20px auto;
}

}
