/* body {

  font-family: "Nunito", sans-serif;
}

.banner-container-about-us {
  background: url("../images/about_us.jpg") no-repeat center center / cover;
  height: 420px;   
  border-radius: 10px;
  margin-bottom: 30px;
} */

/* === GLOBAL STYLES === */
body {
  font-family: "Neue Montreal", sans-serif;
  color: #222;
  font-weight: 200;
  background-color: #fff;
  text-align: center;
  margin: 0;
  padding-top: 100px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #061AB0;
  margin-bottom: 1.5rem;
}

.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");
  }
}

/* === BANNER SECTION === */
.banner-container-about-us {
  background: url("../images/about_us.jpg") no-repeat center center / cover;
  height: 55vh;
  border-radius: 0;
  position: relative;
  margin-bottom: 60px;
}

.banner-container-about-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.05);
}

/* === SECTION COMMONS === */
section {
  margin-bottom: 3rem;
  text-align: left;
}

section h2 i {
  color: #ED0103;
  margin-right: 8px;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 0 5%;
  text-align: justify;
}

.about-section p:first-of-type {
  font-weight: 600;
  color: #ED0103;
}

/* === PURPOSE SECTION === */
.purpose-section {
  padding: 40px 5%;
  border-radius: 8px;
  background: #fefbfb;                       /* soft red tint */
  border-left: 8px solid #ED0103;            /* red accent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* === VALUES SECTION === */
.values-section {
  padding: 40px 5%;
}

/* Table container */
.values-section table {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Header row */
.values-section th {
  background-color: #ED0103;  /* Brand red */
  color: #fff;                /* White text */
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  padding: 14px 10px;
  border: none;
}

/* Table body */
.values-section td {
  background-color: #fff;
  color: #222;
  vertical-align: middle;
  text-align: center;
  padding: 14px 10px;
  font-size: 1rem;
  border: 1px solid #eee;
}

/* Alternate row shading */
.values-section tr:nth-child(even) td {
  background-color: #fafafa;
}

/* Section title + icon */
.values-section h2 {
  color: #061AB0;        /* Brand blue */
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.values-section h2 i {
  color: #ED0103;        /* Red icon */
}


/* === OFFER SECTION === */
/* === WHAT WE OFFER === */
.offer-section {
  padding: 60px 5%;
  background: #fff;
}

.offer-section h2 {
  font-weight: 800;
  color: #061AB0; /* Brand blue */
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.offer-section h2 i {
  color: #ED0103; /* Brand red */
  margin-right: 10px;
}

/* Grid layout */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Card styling */
.offer-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.offer-card:hover {
  border-color: #ED0103;
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Emoji icon */
.offer-card .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* Titles & text */
.offer-card h5 {
  color: #061AB0;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}


/* === INDUSTRIES WE ILLUMINATE === */
.industries-section {
  background: #fff;
  padding: 60px 5%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.industries-section h2 {
  font-weight: 800;
  color: #061AB0; /* Brand blue */
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.industries-section h2 i {
  color: #ED0103; /* Brand red */
  margin-right: 10px;
}

.industries-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.industries-section ul li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.industries-section ul li::before {
  content: "•";
  color: #ED0103; /* red bullet */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.industries-section p {
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}


/* === GREEN FUTURE === */
.green-section {
  background: #f5faff;
  padding: 50px 5%;
  border-left: 5px solid #061AB0;
  border-radius: 10px;
}

.green-section ul li {
  margin-bottom: 6px;
}

/* === WHY CHOOSE US === */
.why-section {
  padding: 40px 5%;
}

.why-section ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* === CLIENTS SECTION === */
.clients-section {
  background: #fafafa;
  padding: 50px 5%;
  border-radius: 8px;
}

/* === CTA SECTION === */
/* === CTA SECTION (Elegant Premium Version) === */
.cta-section {
  width: 100%;
  background: linear-gradient(180deg, #fff9f9 0%, #ffeaea 100%);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Subtle background glow */
.cta-section::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 1, 3, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Inner card */
.cta-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(237, 1, 3, 0.15);
  padding: 30px 3%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

/* Heading */
.cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #061AB0;
  margin-bottom: 20px;
}

/* Text */
.cta-inner p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Contact icons */
.cta-inner i {
  color: #ed0103;
  margin-right: 6px;
}

/* Tagline */
.tagline-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ed0103;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
}

/* Decorative glow under tagline */
.tagline-text::before,
.tagline-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ed0103, transparent);
}

.tagline-text::before {
  left: -50px;
}

.tagline-text::after {
  right: -50px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-inner {
    padding: 40px 6%;
  }

  .cta-inner h2 {
    font-size: 1.7rem;
  }

  .tagline-text {
    font-size: 1rem;
  }

  .tagline-text::before,
  .tagline-text::after {
    width: 25px;
  }
}



/* === HIGHLIGHT CARD SECTIONS (BLUE & RED) === */
.highlight-section {
  background: #f8fbff;                       /* light blue tint */
  border-left: 8px solid #061AB0;            /* blue accent */
  border-radius: 12px;
  padding: 40px 5%;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.highlight-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* === RED VARIANT === */
.highlight-section.red-accent {
  background: #fefbfb;                       /* soft red tint */
  border-left: 8px solid #ED0103;            /* red accent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* === HEADINGS === */
.highlight-section h2 {
  font-weight: 800;
  display: flex;
  align-items: center;
  color: #061AB0;                            /* primary brand blue */
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.highlight-section.red-accent h2 {
  color: #061AB0;                            /* keep heading blue for consistency */
}

/* === ICONS INSIDE HEADINGS === */
.highlight-section h2 i {
  font-size: 1.8rem;
  margin-right: 10px;
  /* color: #061AB0;                            blue for default */
}

.highlight-section.red-accent h2 i {
  color: #ED0103;                            /* red icon for red variant */
}

/* === BODY TEXT === */
.highlight-section p,
.highlight-section ul li {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* === LISTS === */
.highlight-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.highlight-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.highlight-section ul li::before {
  content: "•";
  color: #ED0103;                            /* red bullets for blue cards */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.highlight-section.red-accent ul li::before {
  color: #061AB0;                            /* blue bullets for red cards */
}

/* === RESPONSIVE FIX === */
@media (max-width: 768px) {
  .highlight-section {
    padding: 30px 7%;
    margin: 25px 0;
  }

  .highlight-section h2 {
    font-size: 1.4rem;
  }

  .highlight-section p,
  .highlight-section ul li {
    font-size: 0.95rem;
  }
}
/* 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;
  }
}