/* styles.css - custom styles for Anjanadri header */

:root{
  --brand-dark: #24323a; /* deep slate */
  --accent: #f39c12; /* construction ochre */
  --muted: #6c7a80; /* neutral */
  --light: #ffffff;
}

*{box-sizing:border-box}
body{font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; color:var(--brand-dark); margin:0}

a{color:inherit; text-decoration:none}

/* INFO BAR */
.info-bar{background:linear-gradient(90deg, #2f3b42, #24323a); color:rgba(255,255,255,0.95); font-size:0.92rem}
.info-bar .container{padding:0.45rem 1rem}
.info-bar a{color:rgba(255,255,255,0.95)}
.info-bar .social{font-size:1.05rem; opacity:0.9}
.info-bar .social:hover{opacity:1; transform:translateY(-2px)}

/* NAVBAR */
.navbar{background:var(--light); box-shadow:0 4px 18px rgba(10,10,10,0.06); padding:0 0}
.container .navbar-brand{font-weight:700}

.logo-shape{
  width:48px; height:48px; border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--light); font-weight:700;
  background:linear-gradient(135deg,var(--brand-dark), #2a4b55); font-size:1.25rem
}



.logo-img
{
    width: 50px;
}

.brand-name{font-size:1.05rem; font-weight:700}
.brand-sub{font-size:0.75rem; color:var(--muted); margin-top:-3px}

/* Navbar links */
.nav-link{position:relative; padding:0.6rem 0.9rem; color:var(--brand-dark); border-radius:8px; margin:0 4px; transition:color .25s ease}
.nav-link:hover, .nav-link:focus{color:var(--light); text-decoration:none}

/* Animated background using pseudo-element */
.nav-link::after{
  content: "";
  position:absolute;
  inset:0; /* fill the link */
  background:linear-gradient(90deg,var(--accent), #ffb84d);
  z-index:-1;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .32s cubic-bezier(.2,.9,.2,1);
  border-radius:8px;
}

.nav-link:hover::after{transform:scaleX(1)}

/* Active link - keep accent */
.nav-link.active::after{transform:scaleX(1)}
.nav-link.active{color:var(--light)}

/* Toggler icon style */
.navbar-toggler{border:none}
.navbar-toggler:focus{outline:none; box-shadow:none}

/* Contact button */
.contact-btn{background:var(--brand-dark); color:var(--light); border-radius:10px; padding:0.45rem 0.9rem}
.contact-btn:hover{background:#1b262a}

/* Hero placeholder to test sticky behavior */
.hero-placeholder{height:380px; background:linear-gradient(180deg, #eef2f3, #f7f7f7); padding:3rem}
.hero-placeholder h1{font-size:2rem; margin-bottom:0.5rem}

/* Responsive tweaks */
@media (max-width:991.98px){
  .nav-link{margin:6px 0}
  .contact-btn{display:inline-flex}
}


/*-------------------------------------------------------------------------------------------------------------------------*/

#hero-section {
  width: 100%;
}

.carousel-image {
  height: 450px;
  object-fit: cover;
}

.hero-logo
{
    width: 100px;
}

.logo-img {
  max-width: 100px!important;
  height: auto;
}

.card {
  border: none;
  background: linear-gradient(0deg, #297d9a, #12a0a6);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.slide-cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.slide-card {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: 10px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  cursor: default;
}


/*--------------------------------------------------------------------------------------------------------*/

.anj-card
{
    overflow: hidden;
    padding: 0!important;

}

.anj-quality
{
    width: 100%!important;
    padding: 0;
    margin: 0;

}

.anj-quality-title
{
    font-size: 30px!important;
    color: white!important;
}

.card-details
{
    color: white;
    font-weight: 100;
    padding: 15px;
}

.card-details span 
{
    font-weight: 700;
    font-size: 17px;
    color: rgb(123, 255, 0);
}


/*-------------------------------------------------------------------------------------------------------------------*/

/* About section styles */
.about-section { background: #ffffff; color: var(--brand-dark); }
.about-section h2 { font-weight: 700; color: var(--brand-dark); }
.about-section .lead { color: #444; font-size: 1.05rem; }

/* image container */
.about-img { border: 6px solid rgba(39,48,52,0.03); border-radius: 12px; }
.about-img img { display: block; height: 100%; object-fit: cover; }

/* value cards */
.value-card { border-top: 4px solid #287e9a; background: #fff; transition: transform .32s ease, box-shadow .32s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(30,40,45,0.08); }

.value-icon { font-size: 1.6rem; color: #287e9a; display: inline-block; padding: 8px; border-radius: 50%; background: rgba(40,126,154,0.09); }

/* responsive spacing tweaks */
@media (max-width: 767.98px) {
  .about-section .lead { font-size: 1rem; }
  .value-card { text-align: center; }
}


/*-------------------------------------------------------------------------------------------------------------------------------------------*/

/* Services Section */
.services-section h2 { color: #222; font-weight: 700; }
.services-section p { color: #555; }

.service-card {
  background: #fff;
  border-top: 5px solid #f9b233;
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.service-icon {
  font-size: 2.2rem;
  color: #f9b233;
}
@media (max-width: 767.98px) {
  .service-card { padding: 2rem 1rem; }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------*/

#projects {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 28px;
  letter-spacing: 1px;
  position: relative;
}

.project-list li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #f9b233;
  transition: all 0.3s ease;
}

.project-list li:hover {
  color: #f9b233;
  transform: translateX(5px);
}

.carousel-inner img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}




/*----------------------------------------------------------------------------------------------------------------------------*/

  
.wcu {
  background: #d0dbe1!important;
  padding: 2rem;
}

.wcu-grid-container {
  width: min(75rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 2rem;
}
.wcu-c {
  --grad: red, blue;
  padding: 2.5rem;
  background-image: linear-gradient(to bottom left, #e0e4e5, #f2f6f9);
  border-radius: 2rem;
  gap: 1.5rem;
  display: grid;
  grid-template: 'title icon' 'content content' 'bar bar' / 1fr auto;
  font-family: system-ui, sans-serif;
  color: #444447;
  box-shadow: 
    inset -2px 2px hsl(0 0 100% / 1),
    -20px 20px 40px hsl(0 0 0 / .25) ;

  
  .w-title {
    font-size: 1.2rem;
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-weight: 500;
    }
  .w-icon {
    grid-area: icon;
    font-size: 3rem;
    
    > i {
      color: transparent;
      background: linear-gradient(to right, var(--grad));
      background-clip: text;
    }
  }
  .w-content {
    grid-area: content;
    & > *:first-child { margin-top: 0rem}
    & > *:last-child { margin-bottom: 0rem}
  }
  &::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, var(--grad));
/*     margin-inline: -1.5rem; */
  }


}


/*--------------------------------------------------------------------------------------------------------------------*/

.testimonials-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f9b233;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stars {
  font-size: 1.8rem;
  color: #f9b233;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.client-name {
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.client-location {
  color: #777;
  font-size: 0.9rem;
}


/*---------------------------------------------------------------------------------------------------------------*/

.contact-section {
  background: #fff;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f9b233;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.contact-info {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-info a {
  color: #f9b233;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
}

.social-links a:hover {
  color: #f9b233;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-primary {
  background: #f9b233;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #d6951f;
}

.btn-outline-primary {
  border: 2px solid #f9b233;
  color: #f9b233;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-outline-primary:hover {
  background: #f9b233;
  color: #fff;
}


/*-------------------------------------------------------------------------------------------------------------------*/

footer {
  background: #0f0f0f;
}

footer a:hover {
  color: #287e9a !important;
}
