/* ---------------------- */
/* Global Reset & Base    */
/* ---------------------- */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: #cbd4ec; 
  padding-top: 70px;
  color: #333333;
}


.font{
  font-size: large;
  font-style: normal;
  font-family: cursive;
  color: rgb(71, 6, 6);
}
.subheading{
  font-size: large;
  font-style: normal;
  font-family: cursive;
  color: #1e3a8a;
}

/* ---------------------- */
/* Navbar                 */
/* ---------------------- */
.navbar {
  background-color: #183d8e !important; /* Steel Gray */
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
}

.nav-link {
  color: #ffffff !important;
  margin: 0 8px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f97316 !important; /* Engineering Orange */
}

/* ---------------------- */
/* Hero Section           */
/* ---------------------- */
#home {
    background: #cbd4ec; 
   /* Industrial Blue */
  color: #421818;
  border-radius: 10px;
}

#home h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}


#home p {
  font-size: 1.2rem;
  opacity: 0.9;
}



 
/* ---------------------- */
/* Section Headings       */
/* ---------------------- */
section h2 {
  font-weight: 600;
  text-transform: uppercase;
  color: #1e3a8a; /* Industrial Blue */
  margin-bottom: 25px;
  text-align: center;
}

section p{
  font-weight: 600;
  font-size: large;
  text-align: justify;
  margin-bottom: 18px;
  
}



/* ---------------------- */
/* Cards (Products)       */
/* ---------------------- */
.card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #9ab9e3;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

.card-title {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 12px;
  
}

.card-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
}



/* ---------------------- */
/* Buttons                */
/* ---------------------- */
.btn-primary {
  background-color: #1e3a8a; /* Industrial Blue */
  border: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #152c5b; /* Darker Blue */
}

.btn-success {
  background-color: #f97316; /* Engineering Orange */
  border: none;
}

.btn-success:hover {
  background-color: #c2410c; /* Darker Orange */
}

/* ---------------------- */
/* Certificates Section   */
/* ---------------------- */
#certificates img {
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ---------------------- */
/* Contact Form           */
/* ---------------------- */
#contact .form-control {
  border-radius: 6px;
  border: 1px solid #cccccc;
  padding: 10px;
}

#contact textarea {
  resize: none;
}

/* ---------------------- */
/* WhatsApp Icon          */
/* ---------------------- */
#contact img {
  transition: transform 0.3s;
}

#contact img:hover {
  transform: scale(1.1);
}

.contact-float a img {
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}



.contact-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* default green for WhatsApp */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  transition: transform 0.3s, background-color 0.3s;
}

.contact-float a.whatsapp { background-color: #25D366; }
.contact-float a.email { background-color: #EA4335; }  /* Gmail red */
.contact-float a.phone { background-color: #34B7F1; }  /* Phone blue */

.contact-float a:hover {
  transform: scale(1.1);
}



/* ---------------------- */
/* Footer                 */
/* ---------------------- */
footer {
  background-color: #183d8e !important; 
  padding: 15px 0;
  font-size: 0.95rem;
}
