/* =====================================================
   COMMON UTILITIES
===================================================== */

a {
  text-decoration: none;
}

.center {
  text-align: center;
}

.ft-35 {
  font-size: 35px;
}

/* =====================================================
   HEADER AREA (OLD STABLE VERSION)
===================================================== */

.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #0b2c5d;
}

.header-area.sticky {
  position: fixed;
  top: 0;
  background-color: #0b2c5d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar {
  padding: 15px 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  margin-right: 25px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffd54f;
}

/* Phone CTA */
.header-phone a,
.navbar-btn a {
  color: #ffffff;
    font-weight: 600;
    background: orange;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 10px;
}

/* Mobile toggle */
.navbar-toggler {
  border: none;
}

.navbar-toggler .toggler-icon {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
}

/* =====================================================
   BANNER AREA (OLD SAFE LOOK)
===================================================== */

.banner-area {
  position: relative;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.banner-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #13287d;
  opacity: 0.85;
  z-index: -2;
}

.banner-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/banner-bg-2.jpg);
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.banner-content h1,
.banner-content h3,
.banner-content h6 {
  color: #ffffff;
}

/* Mobile banner */
@media (max-width: 768px) {
  .banner-area {
    height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

/* =====================================================
   FORM STYLES (OLD FORM)
===================================================== */

.banner-form-inner {
  padding: 30px;
  border-radius: 6px;
  background: #ffffff;
}

.banner-form-inner .title {
  margin-bottom: 15px;
  font-size: 22px;
  color: #13287d;
}

.input-box input,
.input-box button {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.input-box button {
  background: #13287d;
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.error {
  color: red;
  font-size: 14px;
}

.success {
  color: green;
  font-size: 14px;
}

/* =====================================================
   BLOG / COURSE GRID
===================================================== */
.bg1{
  background: #f3f3f3!important;
}

.blog-area {
  background: #ffffff;
}

.blog-item {
  background: #ffffff;
  border-radius: 15px;
    padding: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.blog-thumb img {
  width: 100%;
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-size: 18px;
  color: #13287d;
}

.blog-content p {
  font-size: 14px;
  margin: 10px 0;
}

.blog-content a {
  color: #13287d;
  font-weight: 600;
}

/* =====================================================
   BLOG DETAILS
===================================================== */

.blog-wrapper {
  padding: 80px 0;
}

.blog-details {
  max-width: 760px;
  margin: auto;
}

.blog-details img.main-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 30px;
}

.blog-details h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #13287d;
}

.blog-details h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #13287d;
}

.blog-details p {
  line-height: 1.8;
  margin-bottom: 18px;
}

/* =====================================================
   SIDEBAR
===================================================== */

.blog-sidebar {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 6px;
}

.blog-sidebar .widget-title {
  font-size: 20px;
  color: #13287d;
  margin-bottom: 15px;
}

/* =====================================================
   COUNTER / HELPLINE
===================================================== */

.counter-area {
  background-size: cover;
  background-position: center;
}

.counter-item h3 {
  color: #ffffff;
  font-weight: 600;
}

/* =====================================================
   MOBILE CALL BAR
===================================================== */

.mobile-call-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #13287d;
    text-align: center;
    padding: 12px;
    z-index: 9999;
  }

  .mobile-call-bar a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
  }
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #0b2c5d;
  color: #ffffff;
  padding: 2px 0;
}

/* ==================================
   HEADER SPACING FIX (NO BANNER PAGES)
================================== */

body.no-banner {
  padding-top: 90px;
}

@media (max-width: 768px) {
  body.no-banner {
    padding-top: 75px;
  }
}

/* ================= FORM INPUT DESIGN FIX ================= */

.banner-form input,
.banner-form textarea {

    border: 1px solid #e5e5e5;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 6px;
    width: 100%;
    padding: 12px 15px;
}

.banner-form input:focus,
.banner-form textarea:focus {

    border-color: #ff5a2c; /* your theme color */
    box-shadow: 0 0 0 1px rgba(255,90,44,0.2);
    outline: none;
}