:root {
    --danira-blue: #0a66c2;
    --danira-red: #e60023;
    --light-bg: #f9fafb;
    --text-muted: #555;
  }

  body {
    font-family: "Helvetica Neue", sans-serif;
  }

  /* Top bar */
  .top-bar {
    background: #0b1020;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-muted);
  }
  .top-bar .social-icons a {
    color: #FFFFFF;
    margin-right: 10px;
    font-size: 15px;
  }
  .top-bar .social-icons a:hover {
    color: var(--danira-red);
  }
  .top-bar .contact-info {
    text-align: right;
	color: #FFFFFF;
  }
  .top-bar .contact-info i {
    margin-right: 5px;
    color: #FF0000;
  }

  /* Logo bar */
  .logo-bar {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
  }
  .logo-bar .logo-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--danira-blue);
    margin-bottom: 4px;
  }
  .logo-bar .logo-sub {
    font-size: 14px;
    color: var(--danira-red);
    font-weight: 600;
    letter-spacing: 0.6px;
  }

  /* Navigation */
 .navbar {
  margin-bottom: 0;
  border: none;
  border-top: 2px solid #0a66c2; /* blue line */
}

.navbar-brand {
  font-weight: bold;
  font-size: 22px;
  color: #0a66c2 !important;
}

.logo-sub {
  display: block;
  font-size: 12px;
  color: #e60023;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar-nav > li > a {
  color: #333 !important;
  font-weight: 500;
  padding: 16px 20px;
}

.navbar-nav > li.active > a {
  color: #e60023 !important;
  font-weight: bold;
}


/* Show dropdown on hover */
.navbar-nav > li.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Style dropdown */
.dropdown-menu {
  background: #fff;
  border: 1px solid #e5e7eb;
  min-width: 180px;
}
.dropdown-menu > li > a {
  color: #333;
  padding: 10px 16px;
}
.dropdown-menu > li > a:hover {
  background: #f5f5f5;
  color: #0a66c2;
}

/* Logo sizing */
.logo {
  height: 50px;       /* adjust height to your logo */
  width: auto;        /* keep aspect ratio */
  display: inline-block;
}

/* Align logo nicely with menu */
.navbar-brand {
  padding: 8px 15px;  /* reduce padding so logo sits well */
}

/* Feature box styling */
.feature {
  background: #f9fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.feature:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

/* Icon styling */
.feature .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: #0b1020; /* Deep navy blue from your screenshot */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.section-title {
  text-align: center;
  color:#FF0000;
}

.section-subtitle {
  text-align: center;
}

/* Subtitle: Creative Solutions */
.section-subtitle {
  font-size: 44px;       /* Bigger than default */
  font-weight: 700;      /* Bold */
  color: #0b1020;        /* Deep navy blue for branding */
  margin-bottom: 30px;
}

.sicon {
float:left;
padding-bottom:5px; }

.col-sm-4{
padding-bottom:25px; }

.about-split {
  background-color: #0b1020; /* Deep navy blue */
  color: #ffffff;
  padding: 80px 0;
}

.about-text {
  padding-right: 30px;
}

.about-heading {
  font-size: 20px;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  color: #e2e8f0;
  margin-bottom: 30px;
}

.btn-outline-light {
  border: 2px solid #f87171;
  color: #ffffff;
  background: transparent;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-outline-light:hover {
  background-color: #f87171;
  color: #0b1020;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-slider {
  background: #f9fafc;
  padding: 60px 0;
}

.logo-track {
  overflow: hidden;
  position: relative;
}

.logo-slide {
  display: flex;
  gap: 40px;
  animation: scrollLogos 25s linear infinite;
}

.logo-slide img {
  height: 50px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.logo-slide img:hover {
  transform: scale(1.1);
  filter: none;
  opacity: 1;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.danira-footer {
  background-color: #0b1020;
  color: #e2e8f0;
  padding: 60px 0 30px;
  font-size: 14px;
}

.danira-footer h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.danira-footer p {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
}
.footer-links a:hover {
  color: #f87171;
  text-decoration: underline;
}

/* Newsletter form */
.newsletter-form {
  margin-bottom: 15px;
}
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 8px;
}
.newsletter-form button {
  width: 100%;
  padding: 10px;
  background-color: #f87171;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover {
  background-color: #ef4444;
}

/* Social icons */
.social-icons a {
  color: #e2e8f0;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #f87171;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}