/* =============================
ATECH SMART SOLUTIONS – UPDATED THEME
Brand colors inspired by logo:
- Dark Blue: #0b3c5d
- Green: #6fbf4a
- Light Blue: #3fa9f5
============================= */


/* ---------- main.css ---------- */
body{
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
line-height: 1.6;
margin: 0;
background-color: #f4f7f9;
}
.container{width:85%;margin:auto;overflow:hidden;}
header{
background:#ffffff;
color:#0b3c5d;
padding:20px 0;
border-bottom:4px solid #6fbf4a;
}
header h1{margin:0;}
header h1 span{color:#6fbf4a;}
nav ul{list-style:none;}
nav li{float:left;padding:0 15px;}
nav a{color:#ffffff;text-decoration:none;text-transform:uppercase;font-weight:bold;}
nav a:hover{color:#3fa9f5;}
#showcase{
min-height: 520px;
  background:
    linear-gradient(rgba(11,60,93,0.75), rgba(11,60,93,0.85)),
    url('../images/hero-it.jpg') center/cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
}
#showcase h1{margin-top:120px;font-size:48px;}
.section-title{color:#0b3c5d;margin-bottom:10px;}
.button_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4CAF50;
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
}
.button_1:hover {
  background: #43a047;
}
.flex{display:flex;gap:20px;text-align:center;margin-top:30px;}
.box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.box img {
  margin-bottom: 15px;
}
.dark{
background:#0b3c5d;
color:#ffffff;
padding:20px;
border-radius:6px;
}
footer{
background:#0b3c5d;
color:#ffffff;
text-align:center;
padding:20px;
margin-top:40px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branding img {
  display: block;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px; /* AVANT : trop grand */
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  white-space: nowrap;
}

nav a {
  display: block;
  padding: 6px 10px; /* AVANT : trop large */
  font-size: 13px;   /* AVANT : trop grand */
  font-weight: 500;
  color: #0b3c5d;
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover {
  background: rgba(255,255,255,0.15);
}

#showcase h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

#showcase p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 25px;
}

#showcase .button_1 {
  font-size: 16px;
  padding: 14px 30px;
}

flex {
  margin-top: 60px;
  margin-bottom: 60px;
}


@media (max-width: 1024px) {
  #showcase h1 {
    font-size: 42px;
  }

  .flex {
    gap: 25px;
  }
}

/* MOBILES */
@media (max-width: 992px) {

  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 12px;
  }

  #showcase {
    min-height: 420px;
    padding: 40px 15px;
  }

  #showcase h1 {
    font-size: 32px;
  }

  #showcase p {
    font-size: 18px;
  }

  .flex {
    flex-direction: column;
  }

  .box {
    margin-bottom: 25px;
  }

  form.offre {
    width: 100%;
  }
   
  .button_1 {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

}

/* PETITS MOBILES */
@media (max-width: 480px) {
  #showcase h1 {
    font-size: 26px;
  }

  #showcase p {
    font-size: 16px;
  }

  .button_1 {
    width: 100%;
    padding: 14px;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0b3c5d;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }
}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #0b3c5d;
}

/* MOBILE */
@media (max-width: 768px) {

  header .container {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav li {
    width: 100%;
    text-align: center;
  }

  nav a {
    width: 100%;
    padding: 14px 0;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
page-hero {
  background:
    linear-gradient(rgba(11,60,93,0.8), rgba(11,60,93,0.9)),
    url('../images/hero-it.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  padding: 60px 0;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1;
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 20px;
  color: #0b3c5d;
}

.offre label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.offre input,
.offre textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


/* ---------- MENU SUGGESTED ----------
Home | About Us | IT Services | IT Equipment | Industrial Equipment | Partners | Contact
*/


/* ---------- index.html (structure) ---------- */
/* Replace branding text with logo image + company name */
/* <h1><span>ATECH</span> Smart Solutions</h1> */
/* Hero text:
"IT Services, Computer & Industrial Equipment"
*/


/* ---------- Services.html (content update) ---------- */
/* Sections:
- IT Services (Network, Security, Maintenance, Cloud)
- Computer Equipment Sales (Cisco, HP, Dell, Servers, Firewalls)
- Industrial Equipment (Energy, Oil & Gas, Electrical & Automation)
*/


/* ---------- About.html ---------- */
/* Focus on:
- Company overview
- Mission & Values
- Why ATECH (Expertise, Partners, Support)

#showcase h1{margin-top:120px;font-size:48px;}
.section-title{color:#0b3c5d;margin-bottom:10px;}
.button_1{
background:#6fbf4a;
border:0;
color:#ffffff;
padding:10px 20px;
font-weight:bold;
}
*/