body {
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  padding: 15px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
  color: white;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  margin: 15px 0;
}

/* Hero Images */
.hero-images {
  position: relative;
  width: 100%;
  height: 420px;
}

.hero-img-1 {
  position: absolute;
  width: 75%;
  top: 0;
  left: 0;
  border-radius: 40px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img-2 {
  position: absolute;
  width: 60%;
  bottom: 0;
  right: 0;
  border-radius: 40px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img-1:hover,
.hero-img-2:hover {
  transform: translateY(-15px) scale(1.03);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
  color: white;
}
.exp-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.bar {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
  border-radius: 20px;
}

/* widths (experience levels) */
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.w-40 { width: 40%; }
.w-20 { width: 20%; }

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
}

/* Tick Icon */
.clean-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2c6ba0;
  font-weight: bold;
}

.counter-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.counter-box {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #2c6ba0;
  margin-bottom: 10px;
}

.counter-title {
  font-size: 16px;
  color: #333;
}

.cta-form-section {
  background: #f8f9fa;
}

.cta-form-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-form-section p {
  color: #555;
}

.custom-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

.custom-form .btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
  border: none;
}

.custom-form .btn:hover {
  opacity: 0.9;
}.cta-form-section {
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
}

/* Full width padding control */
.cta-form-section .container-fluid {
  padding: 60px 0;
}

/* Form styling */
.form-box .form-control {
  border-radius: 10px;
  padding: 12px;
  border: none;
}

/* Button */
.btn-custom {
  background: #ffffff;
  color: #2c6ba0;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px;
  border: none;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #e6f0ff;
}
.cta-form-section {
  background: linear-gradient(to right, #2c6ba0, #5aa6c8);
}

/* center content properly */
.cta-form-section .row {
  max-width: 1100px;
  margin: auto;
}

.why-box {
  padding: 20px;
}

.small-heading {
  color: #2c6ba0;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-heading {
  font-weight: bold;
  line-height: 1.4;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
}

/* Tick icon */
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2c6ba0;
  font-weight: bold;
}
.site-footer{
    background: #2c6ba0;;   /* different dark modern color */
    color: white;
    width: 100%;
    padding: 60px 0;
}

.site-footer h5{
    color: #ffffff;
    margin-bottom: 15px;
}

.site-footer ul li{
    margin-bottom: 8px;
}

.site-footer p, 
.site-footer li{
    color: #cbd5e1;
}

.site-footer hr{
    margin: 20px 0;
}



/* ##################### contact */

/* CONTACT HEADER SECTION */
.contact-header{
    background: #2c6ba0;;   /* dark professional background */
    padding: 60px 0;
}

.contact-header h2{
    color: white;
    font-size: 40px;
    font-weight: bold;
    margin: 0;
}



/* ############### about  */
.about-hero {
  padding: 90px 20px;
  background: #f8f9fa;
  direction: rtl; /* Urdu right-to-left */
  font-family: "Arial", sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Text Section */
.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h6 {
  color: #2A5880;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-text h1 {
  font-size: 34px;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #2A5880;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1d3f66;
}

/* Image Section */
.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.competence-section {
  padding: 90px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.competence-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* LEFT */
.competence-text {
  flex: 1;
  min-width: 300px;
}

.competence-text h6 {
  color: #2A5880;
  letter-spacing: 2px;
  font-weight: bold;
}

.competence-text h2 {
  font-size: 32px;
  margin: 15px 0;
  line-height: 1.6;
}

.competence-text p {
  color: #444;
  line-height: 1.9;
}

/* RIGHT */
.competence-bars {
  flex: 1;
  min-width: 300px;
}

/* each bar item */
.bar-item {
  margin-bottom: 20px;
}

/* title */
.bar-title {
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
}

/* background bar */
.bar {
  width: 100%;
  height: 12px;
  background: #e9ecef;
  border-radius: 50px;
  overflow: hidden;
}

/* filled bar */
.bar-fill {
  height: 100%;
  background: #2A5880;
  color: #fff;
  font-size: 10px;
  text-align: right;
  padding-right: 8px;
  line-height: 12px;
  border-radius: 50px;
  transition: 0.5s;
}


.navbar-logo{
  height: 40px;      /* logo size control */
  width: auto;       /* aspect ratio maintain */
  object-fit: contain;
}