:root {
    --primary-color: #0d6efd;
    --secondary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}
.text-justify{
    text-align: justify;
    font-size: 15px;
}
/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* slider */
#mainSlider {
    height: auto;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  #mainSlider .carousel-item img {
    object-fit: cover;
    height: 580px;
  }

  /* Subtle dark overlay for nice effect */
  #mainSlider .carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  }

  /* Indicators */
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.7;
  }
  .carousel-indicators .active {
    background-color: #007bff;
    opacity: 1;
  }

  .btn-cumtom{
    background-color: var(--secondary-color);
    color: #fff;
  }
 .btn-cumtom:hover{
    background-color: #d8a303;
    color: #111;
  }


  /* Controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 3px rgba(0,0,0,0.7));
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    #mainSlider {
      height: 250px;
    }
    #mainSlider .carousel-item img {
      height: 250px;
    }
  }

/* Section Common Styles */
.pt-80 {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-img {
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    top: 15px;
    left: 15px;
    z-index: -1;
}

/* board-members */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image box fixed size */
.team-img {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 50%; /* Circle shape */
    border: 1px solid var(--secondary-color);
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

/* Social icons overlay */
.team-social {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-desig{
    color: var(--secondary-color);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    color: #fff;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    padding: 10px 12px;
    border-radius: 50%;
    transition: background 0.3s;
}

.team-social a:hover {
    background: #0d6efd;
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 3px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
.team-img {
    width: 220px;
    height: 220px;
}
}

/* Projects Section */
.project-item {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
}

.project-img {
    transition: all 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(238, 196, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-img {
    transform: scale(1.1);
}


/* Message Area */
.parallax-carousel {
    background: url("../images/message-bg.jpg") center center / cover no-repeat fixed;
    position: relative;
  }

  .parallax-carousel .overlay {
    position: absolute;
    inset: 0;
    background: rgba(124, 124, 124, 0.55);
  }

  .parallax-carousel .container {
    position: relative;
    z-index: 2;
  }

  .parallax-carousel img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }

  .parallax-carousel h2 {
    font-weight: 700;
  }

  .parallax-carousel blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 750px;
    margin: auto;
  }

  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffc107;
  }

  .carousel-indicators .active {
    background-color: #ffc107;
  }

  @media (max-width: 768px) {
    .parallax-carousel img {
      width: 120px;
      height: 120px;
    }

    .parallax-carousel blockquote {
      font-size: 1rem;
    }
  }
/* Products */
.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 3px;
}

/* Contact Section */
.contact-info {
    margin-bottom: 25px;
}


.object-fit-cover {
  object-fit: cover;
}

.btn-cumtom {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 22px;
}
.btn-cumtom:hover {
  background-color: #d8a303;
  color: #111;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    color:#fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#contact .section-title {
    font-weight: 700;
    font-size: 2.2rem;
}

.contact-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-card h4 {
    font-weight: 600;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.contact-card ul li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-card ul li i {
    width: 25px;
}

.contact-card a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-placeholder {
    border: 2px dashed #0d6efd;
    color: #0d6efd;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .contact-card {
        margin-bottom: 20px;
    }
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-caption h2 {
        font-size: 28px;
    }
    
    .pt-80 {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-caption h2 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}