/* =========================
   Global Reset & Base
========================= */

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  color: #0a58ca;
  text-decoration: none;
}

/* =========================
   Headings
========================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #212529;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* =========================
   Navbar Customization
========================= */

.navbar-brand {
  font-size: 1.4rem;
  color: #0d6efd;
}

.navbar .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.5rem 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0d6efd;
}

/* =========================
   Buttons
========================= */

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 0.55rem 1.3rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #0a58ca;
  border-color: #0a58ca;
}

.btn-outline-primary {
  font-weight: 500;
}

/* =========================
   Sections & Spacing
========================= */

section {
  position: relative;
}

.section-title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0.8rem;
}

/* =========================
   Cards
========================= */

.card {
  border: none;
  border-radius: 8px;
}

.card.shadow-sm {
  transition: all 0.3s ease;
}

.card.shadow-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}



.about-img {
  width: 100%;
  height: 320px;          /* FIXED HEIGHT */
  object-fit: cover;      /* image crop होईल, distort नाही */
  object-position: center;
}


/* =========================
   Portfolio
========================= */

.portfolio-img {
  width: 100%;
  height: 220px;          /* FIXED HEIGHT */
  object-fit: cover;      /* Crop, stretch नाही */
  object-position: center;
}












/* =========================
   Forms
========================= */

.form-control {
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  border: 1px solid #ced4da;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

/* =========================
   CTA Section
========================= */

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-primary h2,
.bg-primary p {
  color: #ffffff;
}

/* =========================
   Footer
========================= */

footer {
  font-size: 0.95rem;
}

    
.footer-dark,
.footer-dark p,
.footer-dark li,
.footer-dark a {
  color: #f8f9fa; /* light text */
}

.footer-dark h5,
.footer-dark h6 {
  color: #ffffff; /* headings pure white */
}
    
    
