:root {
  --primary-color: #000000;
  --accent-color: #fc1817;
  --light-cyan: #ecfeff;
  --dark-gray: #475569;
  --light-gray: #f1f5f9;
  --border-color: #d1d5db;
}

body {
  font-family: "Roboto Serif", serif;
  /* font-family: 'Open Sans', sans-serif; */
  line-height: 1.6;
  color: var(--dark-gray);
}
.section {
  padding: 80px 0;
}

/* navigation  */
.nav-logo {
  width: 150px;
  height: auto;
}
.nav-logo img {
  width: 100%;
  height: auto;
}
.nav-link{
    color: #000000;
    font-weight: 600;
}
.nav-link:hover{
    color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 600;
  color: var(--primary-color);
}

.hero-title {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.2;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  color: #000000;
  background-color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #af0100;
  color: white;
  transform: translateY(-2px);
}

/* hero section  */
.hero-section {
  background: linear-gradient(135deg, var(--light-cyan) 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  padding-top: 100px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/placeholder.svg?height=800&width=600") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
/* stats  */
.stats-card {
  text-align: center;
  padding: 1.5rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
}

/* service section  */
.service-section{
    background: linear-gradient(135deg, var(--light-cyan) 0%, #ffffff 100%);
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(22, 78, 99, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px; 
  width: 0;
  background-color: #fc1817;
  transition: width 0.3s ease
  
}
.service-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(22, 78, 99, 0.15);
}
.service-card:hover::after{
    width: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 3rem;
  color: var(--accent-color);
}

/* testimonial section  */
.testimonial-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem;
  border-left: 4px solid var(--accent-color);
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* about us section */
.about-section {
  background: var(--light-cyan);
}
.why-choose-us-img{
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}
.why-choose-us-img img{
    width: 90%;
    height: auto;
}

/* contact section  */
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #fc1817;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(252, 24, 23, 0.25);
}
.form-select:focus {
    border-color: #fc1817;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(252, 24, 23, 0.25);
}
.form-check-input:checked {
    background-color: #fc1817;
    border-color: #fc1817;
}
.form-check-input:focus {
    border-color: #fc1817;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(252, 24, 23, 0.25);
}


/* footer section  */
.footer-section {
  background-color: var(--primary-color);
  color: white;
}

.footer-section a {
  color: var(--light-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.3s ease !important;
}

.social-icon:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}
.social-icon i{
    color: #ffffff;
}
.text-red{
    color: #fc1817;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section::before {
    width: 100%;
    opacity: 0.05;
  }
  .section {
    padding: 40px 0;
  }
}
