/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-section .btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-section .btn:hover {
  background-color: #c82333;
}

/* Services Section */
.services-section {
  padding: 60px 0;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #666;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.contact-section form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section .form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-section .btn {
  width: 100%;
  padding: 10px;
  font-size: 1.2rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-section .btn:hover {
  background-color: #0056b3;
}





/* Top Banner */

header .container-fluid {
  background-color: #ddb905;
  color: white;
}

.header .col-md-6 span {
  font-size: 18px;
}

.header .col-md-6 i {
  font-size: 24px;
}

.site-footer {
  background-color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.footer-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  text-align: center;
}

.footer-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #343a40;
  color: white;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  text-align: center;
  font-size: 1rem;
}

.footer-section.brand {
  text-align: left;
}

.footer-section.contact {
  text-align: right;
}
a.btn:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}
/* Root variable for slice position */
/* Root variable for slice position */
:root {
  --slice-pos: 60%;
}

/* Header styling */
.header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(
    135deg,
    /* Left side: pure red */
    #FF0000 0%,
    #FF0000 var(--slice-pos),
    /* Right side: rust color */
    #B7410E var(--slice-pos),
    #B7410E 100%
  );
  font-family: sans-serif;
}

/* Icon and text alignment */
.header .left i,
.header .right i,
.header .left span,
.header .right span {
  vertical-align: middle;
}

.header .left span {
  margin-left: 8px;
  font-size: 1rem;
}

.header .right span {
  margin-right: 12px;
  font-size: 1rem;
}

/* Controls styling (for demo) */
.controls {
  margin: 20px;
  font-family: sans-serif;
}

.controls input {
  vertical-align: middle;
}

