/* Global Styles */
:root {
  --primary-color: #6a1b9a;
  --secondary-color: #ff9800;
  --dark-color: #212121;
  --light-color: #f5f5f5;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #757575;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  /* height: auto; */
}

.btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #4a148c;
  border-color: #4a148c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.divider {
  height: 3px;
  width: 80px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 0 auto;
}

/* Navigation */
.navbar {
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--white-color);
  font-weight: 500;
  padding: 8px 15px !important;
  margin: 0 5px;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background: url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white-color);
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Service Cards */
.service-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white-color);
  font-size: 30px;
}

/* Gallery */
.gallery-preview {
  background-color: var(--light-color);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 60px 0;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-color);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  color: var(--white-color);
  text-align: center;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--white-color);
}

.breadcrumb-item.active {
  color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

/* About Page */
.about-content img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white-color);
  font-size: 30px;
}

.team-card {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info p.text-primary {
  color: var(--primary-color) !important;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Page */
.contact-info {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h5 {
  margin-bottom: 5px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

.contact-form {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: auto;
}

.faq-section .accordion-button {
  font-weight: 600;
  padding: 15px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(106, 27, 154, 0.1);
  color: var(--primary-color);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Portfolio Page */
.portfolio-filter {
  margin-bottom: 30px;
}

.portfolio-filter .nav-link {
  color: var(--dark-color);
  padding: 8px 20px !important;
  border-radius: 50px;
  margin: 0 5px;
  font-weight: 600;
}

.portfolio-filter .nav-link.active {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white-color);
}

.portfolio-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 27, 154, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  color: var(--white-color);
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  margin-bottom: 10px;
}

.testimonial-item {
  padding: 30px;
}

.testimonial-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-item p {
  font-style: italic;
  position: relative;
}

.testimonial-item p:before,
.testimonial-item p:after {
  content: '"';
  font-size: 24px;
  color: var(--primary-color);
  opacity: 0.5;
}

.testimonial-item h5 {
  margin-top: 20px;
  color: var(--primary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: var(--white-color);
  transform: scale(1.1);
}

/* Animations */
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin-top: 15px;
    border-radius: 5px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-section .row {
    text-align: center;
  }

  .cta-section .text-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .contact-content .map-container {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 8px 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}
