#E55807
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}
/* === GLOBAL FONT STYLES === */

/* Headers, Navbar, Buttons */
h1, h2, h3, h4, h5, h6,
.navbar, .btn, .section-heading, .card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Body text, paragraphs, labels */
body, p, a, li, input, textarea, .card-text {
  font-family: 'Neue Montreal', sans-serif;
  font-weight: 200;
  color: #111;
  text-align: center;
}


/* body {
  font-family: "Nunito", sans-serif;
  text-align: center;
} */

/* Headings */
.big-heading {
  font-weight:  700;
  font-size: 3.5rem;
  line-height: 1.5;
}
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  padding-bottom: 3rem;
}
/* Containers */
.container-fluid {
  padding: 5% 12%;
}

/* Sections */
.colored-section {
  background-color:  #ED0103;
  color: #fff;
}

.white-section {
  background-color: #fff;
  color: #061AB0;
}


/* Title Section */
/* === HERO SECTION === */
.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../images/welcome_to_doro.jpg") no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay for readability */
.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05); /* adjust darkness */
  z-index: 1;
}




/* === NAVBAR === */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 3rem;
  z-index: 10;
  background: transparent;
  transition: all 0.4s ease;
}

/* Logo */
.navbar-brand img {
  height: 65px;
  width: auto;
}

/* Navbar links (default = white) */
.navbar-brand img {
  height: 65px;
  width: auto;
}

/* Navbar base */
.custom-navbar {
  background: #FFFFFF; /* solid white background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #061ab0 !important;  /* DORO teal accent */
  font-weight: 500;
  font-size: 1rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ED0103 !important;  /* DORO red hover */
}

/* === SCROLLED STATE === */
.custom-navbar.scrolled {
  background: #FFFFFF; /* stays white */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled .nav-link {
  color: #061ab0 !important;
}

.custom-navbar.scrolled .nav-link:hover {
  color: #ED0103 !important;
}

/* === NAVBAR MOBILE FIX === */
@media (max-width: 992px) {
  .custom-navbar {
    padding: 0.6rem 1rem;
  }

  .navbar-nav {
    background: #FFFFFF;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav .nav-link {
    text-align: center;
    color: #061AB0 !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(6,26,176)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}



/* === HERO TEXT === */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeUp 1.3s ease-out forwards;
  opacity: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 15px;
  color: #eee;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* === ANIMATION === */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .navbar-brand img { height: 50px; }
}

/* === HERO RESPONSIVE FIX === */
@media (max-width: 768px) {
  .hero-container {
    height: 80vh;
    background-position: center;
    background-size: cover;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}


/* About Section */

.about-p {
  text-align: justify;
}
/* === ABOUT RESPONSIVE FIX === */
@media (max-width: 768px) {
  .about-p {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.section-heading{
  text-align: center
}



/* Quote Section */
#quotes {
  /* background-color: #E55807; */
  background-color: #ED0103;
}
.quotes-text {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
}

/* === QUOTE RESPONSIVE FIX === */
@media (max-width: 768px) {
  #quotes {
    padding: 25px 5%;       /* tighter height on mobile */
  }

  .quotes-text {
    font-size: 0.98rem;       /* smaller but proportional */
    white-space: nowrap;     /* ✅ keeps it in one line */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
  }
}


/* Product Section */

.product-h3{
  text-align: left;
}
.product-hr {
  margin: 0;
  text-align: left;
  width: 25%;
  border: 2px solid #ED0103;
  margin-bottom: 3rem;
}
.product-p{
  text-align: left;
  font-weight: 400;
}
.product-image {
  width: 100%;
}
.product-image-hr {
  border: 1px solid #ED0103;
}
.product-button {
  float: right;
  margin-top: 1rem;
  display: block;
  margin-left: 1rem;
  margin-bottom: 2rem;
}

/* === PRODUCT GRID - MOBILE IMPROVEMENT (FINAL) === */
@media (max-width: 768px) {

  /* Two products per row for all categories */
  .row#indoor-preview .col-sm-6,
  .row#outdoor-preview .col-sm-6,
  .row#decorative-preview .col-sm-6 {
    flex: 0 0 50%;        /* 2 per row */
    max-width: 50%;
    padding: 10px;
  }

  /* Square product card */
  .product-card {
    aspect-ratio: 1 / 1;              
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    margin-bottom: 15px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible !important;     /* allow downward expansion */
  }

  .product-card img {
    height: 55%;                      
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .product-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .product-card h6.card-title {
    font-size: 0.9rem;
    margin: 6px 0;
  }

  .product-card .btn {
    font-size: 0.7rem;
    padding: 5px 8px;
    width: 75%;
    margin-top: 6px;
  }

  /* Fix "View Details" slide direction */
  .view-details-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .specs-content {
    display: none;
    text-align: left;
    width: 90%;
    margin-top: 8px;
    animation: none;
  }

  /* Headings and divider centered */
  .product-h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .product-hr {
    width: 60%;
    margin: 0.8rem auto 2rem;
  }

  /* View more button centered */
  .product-button {
    float: none;
    display: block;
    margin: 2rem auto;
  }
}



/* Carousel Section */

.projects-section {
  background: linear-gradient(180deg, #ED0103 0%, #061AB0 100%);
  padding: 80px 0;
}

/* Carousel container */
.carousel {
  max-width: 1100px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 26, 176, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease;
}

.carousel:hover {
  transform: scale(1.01);
}

/* Image styling */
.project-img {
  height: 600px;
  object-fit: cover;
  filter: brightness(0.93) contrast(1.08);
  transition: all 0.5s ease;
}

.project-img:hover {
  filter: brightness(1.05) contrast(1.1);
}

/* Fade transition effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

/* Caption overlay (restored previous style but adapted to theme) */
.carousel-caption {
  background: rgba(255, 255, 255, 0.8); /* previous clean dark overlay */
  backdrop-filter: blur(5px);
  padding: 18px 30px;
  border-radius: 10px;
  bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-caption h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #061AB0; /* bright white heading */
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.carousel-caption p {
  color: #ED0103; /* your brand orange restored here */
  font-weight: 500;
  margin-bottom: 0;
}

/* Navigation arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(6, 26, 176, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #ED0103;
}

/* Subtle ambient glow */
.carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(6, 26, 176, 0.25);
  pointer-events: none;
}

/* === CAROUSEL RESPONSIVE FIX (FINAL WITH SIDE PADDING) === */
@media (max-width: 768px) {

  /* Add horizontal padding for spacing */
  .projects-section {
    padding: 50px 16px 60px; /* ← added 16px on left & right */
    background: linear-gradient(180deg, #ED0103 0%, #061AB0 100%);
  }

  /* Image slightly shorter and centered */
  .project-img {
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Clean, centered caption box */
  .carousel-caption {
    bottom: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    width: 88%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .carousel-caption h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #061AB0;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    color: #ED0103;
    margin-bottom: 0;
  }

  /* Compact navigation arrows */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 28px;
    height: 28px;
    background-size: 45%;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  /* Rounded container look */
  .carousel {
    border-radius: 16px;
    overflow: hidden;
  }
}

/* Services Section */
.service-request-section {
  background: #fff;
  padding: 80px 5%;
  border-top: 6px solid #ed0103;
  border-bottom: 6px solid #061ab0;
}

.service-request-section h2 {
  color: #061ab0;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-request-section p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 40px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.service-form {
  max-width: 900px;
  margin: 0 auto;
  background: #f9f9ff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-form label {
  font-weight: 600;
  color: #333;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 1rem;
}

.btn-submit {
  background: linear-gradient(90deg, #ed0103, #061ab0);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #061ab0, #ed0103);
  transform: translateY(-2px);
}

.status-message {
  margin-top: 25px;
  text-align: center;
  font-weight: 600;
}

.status-success {
  color: #28a745;
}

.status-error {
  color: #dc3545;
}

@media (max-width: 768px) {
  .service-form {
    padding: 25px 20px;
  }
}



/* === CONTACT SECTION === */
.contact-container {
  padding: 5% 8%;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
}

.contact-container h2 {
  color: #061AB0;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Contact cards styling */
.contact-card {
  background: #fff;
  border: 2px solid #ED0103; /* orange border */
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(6, 26, 176, 0.15);
  padding: 2rem;
  margin: 1rem;
  min-height: 250px; /* ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 26, 176, 0.25);
}

.contact-card h4 {
  color: #ED0103;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-card i {
  color: #ED0103;
  margin-right: 8px;
}

.contact-card p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* === CONTACT RESPONSIVE FIX (Final Polished for Mobile) === */
@media (max-width: 768px) {
  #contact {
    padding: 40px 0 60px;
  }

  /* Full-width Address Card */
  #contact .contact-card.address {
    flex: 0 0 90%;
    max-width: 90%;
    margin: 0 auto 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 1.8px solid #ED0103;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    text-align: center;
  }

  /* Phone + Email same style, side by side */
  #contact .contact-card.phone,
  #contact .contact-card.email {
    flex: 0 0 43%;
    max-width: 43%;
    margin: 0.8rem 0.4rem;
    padding: 1.5rem 0.8rem;
    border-radius: 16px;
    border: 1.8px solid #ED0103;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    text-align: center;
  }

  /* Make all cards same height */
  #contact .contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 230px;
  }

  /* Icon + heading */
  #contact .contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #ED0103;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  /* Paragraph text */
  #contact .contact-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    word-break: break-word;
    text-align: center;
  }

  /* Fix section heading + lead spacing */
  #contact .section-heading {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  #contact p.lead {
    font-size: 0.95rem;
    padding: 0 10px;
    margin-bottom: 2rem;
  }
}









/* Footer Section */
/* === FINAL SYMMETRIC FOOTER === */
footer {
  /* background: linear-gradient(180deg, #181818 0%, #1f1f1f 50%, #2d150b 100%);
  color: #ddd; */
  background: linear-gradient(180deg, #061AB0 0%, #05148A 50%, #040C63 100%);
  color: #f2f2f2;
  padding: 70px 0 30px;
  font-size: 0.95rem;
  position: relative;
  box-shadow: 0 -4px 20px rgba(6, 26, 176, 0.35);
  text-align: center;
}

/* Orange top line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ED0103;
}

/* Layout fix for perfect symmetry */
footer .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Headings */
footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ED0103;
}

/* List Styling */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  /* color: #ccc; */
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: #ED0103;
}

/* Social Icons */
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 1.2rem;
}

footer .social-icons a {
  color: #fff;
  /* background: #2b2b2b; */
  background: #0B1185;
  border: 1.5px solid #ED0103;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background: #ED0103;
  color: #fff;
  transform: translateY(-3px);
  /* box-shadow: 0 0 12px rgba(229, 88, 7, 0.8); */
  box-shadow: 0 0 12px rgba(237, 1, 3, 0.8);
}

/* Divider line */
.footer-divider {
  width: 60%;
  height: 1px;
  /* background: rgba(255, 255, 255, 0.1); */
  background: rgba(255, 255, 255, 0.1);
  margin: 20px auto 20px;
}

/* Tagline & Copyright */
.footer-tagline {
  /* color: #f8f8f8; */
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 0.5px;
}

footer .copyright {
  /* color: #aaa; */
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* === FOOTER RESPONSIVE FIX === */
@media (max-width: 768px) {
  footer {
    padding: 50px 10px;
  }

  footer .container {
    max-width: 100%;
  }

  footer h5 {
    font-size: 1.2rem;
  }

  footer ul li a {
    font-size: 0.95rem;
  }

  .footer-divider {
    width: 80%;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }
}




/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 33.3%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #E55807;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
} */

/* Product Card Styling */
/* Product Card Styling */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-wrapper {
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.product-card img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .card-body {
  text-align: center;
}

.product-card .collapse {
  text-align: left;
}
.product-card .btn-sm {
  font-size: 0.8rem;   /* smaller font */
  padding: 4px 8px;    /* smaller padding */
  border-radius: 6px;  /* softer corners */
}



