:root {
  --color-primary: #2563eb;   /* Blue */
  --color-secondary: #06b6d4; /* Cyan */
  --color-dark: #0f172a;      /* Navy/Dark */
  --color-light: #f1f5f9;     /* Soft white */
  --color-text: #e2e8f0;      /* Muted white/gray */
  --color-btn-hover: #1d4ed8; /* Darker blue */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
  color: var(--color-dark);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.faq-section .section-header h2 span {
  color: var(--color-primary);
}

.faq-section .section-header p {
  color: #555;
  font-size: 1.1rem;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item.active {
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 10px 25px rgba(37,99,235,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--color-dark);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 25px;
}

.faq-answer p {
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 15px;
  }
  .faq-section .section-header h2 {
    font-size: 1.8rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  padding: 60px 20px;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Button */
.btn-accent {
  background: #fff;
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-accent:hover {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .btn-accent {
    margin-top: 20px;
  }
}



.site-footer {
  background: var(--color-dark);
  color: var(--color-text);
  padding: 80px 20px 40px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-about h3 span {
  color: var(--color-primary);
}

.footer-about p {
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 5px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact ul li a{
  color: #cbd5e1;
}
.footer-contact ul li a:hover{
   color: var(--color-primary);
}

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

.footer-contact i {
  color: var(--color-primary);
  margin-right: 8px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
}


a.footer_logo{
  display: block;
  margin-bottom: 20px
}

a.footer_logo img{
  width: 220px
}




.team-section {
  background: var(--color-light);
  color: var(--color-dark);
  padding: 80px 20px;
}

.team-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.team-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.team-section .section-header h2 span {
  color: var(--color-primary);
}

.team-section .section-header p {
  color: #555;
  font-size: 1.1rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Team Member */
.team-member {
  background: white;
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  max-width: 340px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--color-primary);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .bio {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */



.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease;
}

.fadeInUp.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .team-section {
    padding: 70px 15px;
  }
  .team-section .section-header h2 {
    font-size: 2rem;
  }

.fadeInUp {
  opacity: 1!important;
  transform: translateY(0)!important;
}

}


/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 9px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}


a{
  text-decoration: none;
}




.btn-primary.btnwhite{
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  color: var(--color-primary);
}

.btn-primary.btnwhite::before{
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 200, 200, 0.3),
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.page-header {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
    padding-bottom: 70px;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); /* subtle dark overlay */
  backdrop-filter: blur(3px);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: #e2e8f0;
}





.portfolio-section {
  padding: 100px 20px;
  background: var(--color-light);
  color: var(--color-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-header h2 span {
  color: var(--color-primary);
}
.section-header p {
  font-size: 1.1rem;
  color: var(--color-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  background: var(--color-light);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgb(37 99 235 / 44%); /* var(--color-primary) with opacity */
  color: var(--color-light);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 20px;
}

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

.portfolio-item .overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  animation: fadeInDown 0.6s ease;
}

.portfolio-item .overlay .btn-view {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-light);
  color: var(--color-primary);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  animation: fadeInUp 0.6s ease;
}

.portfolio-item .overlay .btn-view:hover {
  background: var(--color-secondary);
  color: var(--color-light);
  transform: translateY(-2px);
}

.portfolio-section .cta{
  text-align: center
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}



.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  color: var(--color-dark);
  text-align: center;
}

.testimonials-section .section-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feedback {
  font-style: italic;
  color: #444;
  margin-bottom: 25px;
  min-height: 100px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.client-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.client-info span {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {

.footer-links h4{
  display: inline-block;
}

  .footer-links h4::after, .footer-contact h4::after{
    margin: 0 auto;
    margin-top: 5px
  }

  .highlights-section, .services-section, .portfolio-section,
  .testimonials-section, .team-section, .faq-section, .cta-section,
  .intro-section,.contact-form-section{
    padding: 60px 0!important;
  }

.section-header h2{

    font-size: 1.8rem;

}

}

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-svg {
  width: 80px;
  height: 80px;
  animation: rotate 1.8s linear infinite;
}

.loader-svg circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280;
  animation: dash 1.5s ease-in-out infinite;
}

.loader-text {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 1px;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(45deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(360deg);
  }
}