:root {
    --primary:#2d1e64;
    --secondary:#eb780f;
}

.bg-primary{
    background-color: var(--secondary) !important;
}
.border-black-3{
  border: 1px solid #000000;
}

.max-w-500{
    max-width: 500px;
}
.message-box{
    background: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    border-radius: 15px;
}

/* MAIN FOOTER */
.main-footer {
    background: var(--primary);
    color: #ccc;
    padding: 80px 0 30px;
}

/* LOGO */
.footer-logo {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

/* TITLES */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #aaa;
}

.footer-contact li {
    margin-bottom: 10px;
}

/* DIVIDER */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    font-size: 13px;
    color: #888;
}

/* POLICY LINKS */
.footer-policy a {
    color: #888;
    text-decoration: none;
    margin-left: 15px;
}

.footer-policy a:hover {
    color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.social-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff10;
  font-size: 14px;
}

.social-item .label {
  font-size: 14px;
  font-weight: 500;
}
/* group 
primary : #094e69
secondary:#63944f */

.brochure-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #2d1e64;
  border: 1.5px solid #2d1e64;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brochure-btn:hover {
  background-color: #2d1e64;
  color: #fff;
  box-shadow: 0 4px 12px rgba(45, 30, 100, 0.3);
  transform: translateY(-2px);
}

/* GLOBAL */
html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.carousel-inner {
    height: 100% !important;
    min-height: 420px !important;
}
/* NAVBAR BASE */
.custom-navbar {
    background: rgba(0,0, 0, 0.5);
    padding: 18px 0;
    transition: all 0.4s ease;
}

/* TEXT WHITE ON HERO */
.custom-navbar .nav-link,
.custom-navbar .navbar-brand .brand-text {
    color: #fff !important;
}

/* SCROLLED STATE */
.custom-navbar.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TEXT DARK AFTER SCROLL */
.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .navbar-brand .brand-text {
    color: #222 !important;
}

/* LOGO ACCENT */
.navbar-brand span {
    color: var(--secondary);
}

/* HOVER FIX (VISIBLE ON BOTH) */
.nav-link::after {
    background: var(--secondary);
}

/* Logo */
.logo-img {
height: 40px;
width: auto;
object-fit: contain;
}

/* Brand Text */
.brand-text {
font-weight: 700;
font-size: 20px;
color: #1c1c1c;
}

/* Highlight word */
.brand-text .highlight {
color: #ff6a00; /* match your orange */
}

/* Navbar spacing */
.navbar-brand {
display: flex;
align-items: center;
}



/* HERO FULL WIDTH */
.hero {
    position: relative;
    padding: 0 0 92px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 500px; /* control vertical size */
  object-fit: cover; /* prevents stretching */
}   

#buildbest-organization .about-image {
  aspect-ratio: 4 / 3;
}
#buildbest-organization .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .carousel-item img {
    height: 100vh;
    object-fit: cover;
}

/* DARK OVERLAY (LIKE GODREJ) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 20%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.2) 100%
    );

    z-index: 1;
}

/* CONTENT ON IMAGE */
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
}

.hero-content p {
    margin-top: 15px;
    font-size: 16px;
    max-width: 500px;
}

/* BUTTON */
.btn-primary-custom {
    margin-top: 20px;
    background: var(--secondary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: #ffffff;
}

.btn-primary-custom:hover {
    background: #a35002;
    color: #ffffff;
}

/* ARROWS STYLE */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.4);
    top: 50%;
    transform: translateY(-50%);
}


/* COMMON SECTIONS */
section {
    padding: 92px 0;
}

h2 {
    color: var(--primary);
    font-weight: bold;
}

/* ABOUT SECTION */
.about-section {
    background: #fff;
}

/* IMAGE SIDE */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
}

/* FLOATING BADGE */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.about-badge span {
    font-size: 28px;
    font-weight: bold;
    display: block;
}

.about-badge p {
    margin: 0;
    font-size: 12px;
}

/* CONTENT */
.about-content {
    padding-left: 20px;
}

/* SUBTITLE */
.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

/* TITLE */
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 20px;
}

/* TEXT */
.about-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* STATS */
.about-stats {
    margin-top: 20px;
}

.about-stats h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stats p {
    font-size: 13px;
    color: #777;
}

/* CARDS */
.card {
    border: none;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}
.card-img-top {
  width: 100%;
  height: 220px;       /* same height for all */
  object-fit: cover;   /* crop instead of stretch */
}

/* TESTIMONIAL */
/* #testimonials .container {
    max-width: 1200px;
} */

/* BIGGER CARDS */
.testimonial-card {
    padding: 40px;   /* increased */
    border-radius: 16px;
}


.testimonial-section {
    background: #f8f9fa;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* TEXT */
.testimonial-text {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-user span {
    font-size: 12px;
    color: #888;
}

/* DOTS STYLE */
#testimonialSlider .carousel-indicators [data-bs-target] {
    background-color: var(--secondary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#projects .carousel-indicators [data-bs-target] {
    background-color: var(--secondary) !important;
    margin-bottom: -2rem;
}


#testimonialSlider .carousel-indicators {
    bottom: -50px; /* 🔥 push dots down */
}

.carousel-indicators




/* CAROUSEL DRAG */
.carousel-item {
    cursor: grab;
}
.carousel-item:active {
    cursor: grabbing;
}

#testimonialSlider .carousel-inner {
    height: 100% !important;
   min-height: 0px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero .carousel-item img {
        height: 70vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

        .about-content {
        padding-left: 0;
    }

    .about-badge {
        left: 50%;
        transform: translateX(-50%);
    }
        .custom-navbar {
        background: rgba(48, 47, 47, 0.2);
        backdrop-filter: blur(10px);
         -webkit-backdrop-filter: blur(10px);
        padding: 12px 0;
    }

    .navbar-collapse {
        
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    #completed .carousel-item {
        padding: 0 10px;
    }

    .message-box {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    font-weight: 700;
    border-radius: 15px;
    margin: 0px 10px 10px;
    padding: 15px !important;
}
    .message-box .text-black{
        font-size: 15px;
    }

    #philosophy .row{
        gap: 30px;
    }

    section {
    padding: 45px 0;
}

.row>* {
    margin-top: 30px;
}

.main-footer .row {
    gap: 15px;
}

.main-footer {
    padding: 40px 0 30px;
}

.align-md-left{
    align-items: flex-start !important;
}

#developer-organization .row, #buildbest-organization .row  {
    flex-wrap: wrap-reverse;
}



}

@media (max-width: 768px) {
    .hero {
    padding: 0 0 32px;
}

.logo-img {
height: 32px;
}

.brand-text {
font-size: 16px;
}
}

@media (max-width: 576px) {
    .custom-navbar {
        padding: 10px 0;
    }
}

