/* ----------------------------------
   GLOBAL
---------------------------------- */
body{
    font-family: newsreadr;
  }

/* Button Styling */
.btn {
  background-color: #0095DA;
  color: #ffffff;
  border-color: #ffffff;
  border-radius: 10px;
  padding: 10px 25px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffffff;
  color: #0095DA;
  border-color: #0095DA;
  transform: translateY(-3px);
  opacity: 0.9;
}


/* ----------------------------------
   Navbar
---------------------------------- */
/* Common Color */
  :root {
    --white: #ffffff;
  }
  
  /* Main Navbar */
  .main-navbar {
    background-color: var(--white);
  }

  /* Logo Style */
  .logo-img {
    height: 35px;
    width: auto;
  }

  /* Nav Links Hover */
  .nav-link {
    color: #000000 !important;
    transition: 0.3s;
  }

  .nav-link:hover {
    color: #0095DA !important;
  }


/* ----------------------------------
   Hero
---------------------------------- */
/* Center Text Box */
.carousel-caption-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  border-radius: 10px;
}
.img {
  height: 800px;
}
.opacity{
  background: rgba(0, 149, 218, 0.1); 
}
/* Subheading Color */
.slide-subtitle {
  color: #EC1F25;
}


/* ----------------------------------
   About
---------------------------------- */
/* Background */
.about-section {
  background-color: #ffffff;
}

/* Image Styling */
.about-img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

/* Subtitle Color */
.about-subtitle {
  color: #EC1F25;
}

/* List Styling */
.about-list li {
  margin-bottom: 8px;
  font-size: 16px;
}


/* ----------------------------------
   Services
---------------------------------- */
/* Section Background */
.services-section {
  background: url('assets/images/bg.jpeg') no-repeat center center/cover;
  position: relative;
}

/* Headings Color */
.service-heading {
  color: #EC1F25;
}

/* Service Card Background */
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
}

/* Images Inside Cards */
.service-img {
  max-width: 80%;
  height: 180px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------
   Why Choose Us?
---------------------------------- */
/* Image styling */
.why-image {
  object-fit: cover;
  height: 500px;
  width: 100%;
}

/* Title Color */
.why-title-small {
  color: #EC1F25;
}

/* Feature Icons */
.feature-icon {
  color: #EC1F25;
}

/* Feature Heading */
.feature-heading {
  color: #EC1F25;
}


/* ----------------------------------
   Our Product
---------------------------------- */
/* Section Subtitle */
.section-subtitle {
  color: #EC1F25;
}

/* Make all project images same size */
.project-img {
  height: 220px;              /* 🔹 All images same height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFDFF;  /* Light background (optional) */
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* 🔹 Full Image Showing */
}


/* ----------------------------------
   Footer
---------------------------------- */
/* Footer Background */
.footer-section {
    background-color: #F5FCFF;
}

/* Footer Headings */
.footer-section h5 {
    color: #EC1F25;
}

.footer-item{
  color: #000000;
}

.footer-item:hover{
  color: #0095DA;
}

/* Footer Icons */
.footer-section i {
    color: #F36B6F;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  transition: 0.3s;
}

/* Hover Effect */
.whatsapp-float:hover {
  background-color: #1ebe5d;   /* Darker WhatsApp Green */
  color: #ffffff;
  transform: scale(1.08);
}

/* Icon fix */
.whatsapp-float i {
  line-height: 1;
}


/* ----------------------------------
   All Page Hero Section
---------------------------------- */
/* Hero Banner Section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Background Image */
.hero-banner .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 149, 218, 0.1);
}

/* Centered Text */
.hero-banner .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000000;
  transform: translate(-50%, -50%);
}

/* ----------------------------------
   Contact Page
---------------------------------- */
/* Section Background & General */
.callback-section {
  background-color: #ffffff;
}

/* Heading Styles */
.callback-section .callback-title {
  color: #EC1F25;
}

.callback-section .callback-subtitle {
  color: #0095DA;
  max-width: 900px;
}

/* Form Container */
.callback-form-container {
  border-color: #0095DA;
}

/* Form Input Fields */
.callback-form-container .form-control,
.callback-form-container .form-select,
.callback-form-container textarea {
  border-radius: 50px;
  transition: 0.3s;
}

.callback-form-container .form-control:focus,
.callback-form-container .form-select:focus,
.callback-form-container textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Google Map Container */
.map-container iframe {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  height: 650px;
}


/* ----------------------------------
   All Product Img Page
---------------------------------- */
/* Section Title */
.product-title {
  color: #EC1F25;
}

.product-subtitle {
  max-width: 800px;
  color: #495057;
  opacity: 0.9;
}

/* Product Image Container */
.product-img {
  height: 300px;
  position: relative;
}

/* Image title overlay */
.img-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  padding: 6px 0;
}









