/* Base Styling */
body {
    font-family: 'Montserrat', sans-serif;
}

.fw-black {
    font-weight: 900 !important;
}

/* Background & Texture Overlay */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://dsathemes.com/html/xlander/contact/img/thumbs/intro_bkg.jpg') center/cover;
}

/* Creating the Dotted Mesh Effect */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Creates the tiny dot pattern */
    background-image: radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px);
    background-size: 4px 4px;
    background-color: rgba(0, 0, 0, 0.4); /* Darkens the overall image */
    z-index: 1;
}

/* Navbar Tweaks */
.navbar-brand span {
    font-weight: 400;
}

/* Content Positioning */
.min-vh-75 {
    min-height: 75vh;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    text-align: left;
}

    .pe-lg-5 {
        padding-right: 3rem !important;
        color: white;
        font-size: 22px;
    }

/* Form Styling */
.bg-dark-transparent {
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(2px); /* Subtle blur for modern feel */
}

.form-control {
    background-color: #f8f9fa !important;
}

/* Yellow Theme Colors */
.btn-warning {
    background-color: #ffcc00 !important;
    border: none;
    color: #000 !important;
    transition: 0.3s;
}

.btn-warning:hover {
    background-color: #e6b800 !important;
    transform: translateY(-2px);
}


/* Typography & Spacing */
.tracking-widest {
    letter-spacing: 0.15rem;
}

/* Yellow Underline for Section Header */
.header-line {
    width: 100px;
    height: 3px;
    background-color: #ffcc00;
}

/* Content Area Styles */
.about-section {
    background-color: #ffffff;
}

.about-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

/* Button Customization */
.btn-warning {
    background-color: #ffcc00 !important;
    border: none;
    color: #000;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e6b800 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Image behavior */
.image-wrapper img {
    max-height: 500px;
    object-fit: cover;
}

/* Vertical Rule adjustment */
.vr {
    align-self: center;
}


/* Features Section Styles */
.features-section {
    background-color: #f4f4f4 !important; /* Soft grey background */
}

.features-list h5 {
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.feature-item {
    cursor: pointer;
}

.feature-item:hover h5 {
    opacity: 1 !important;
    color: #ffcc00 !important;
}

.small-line-height {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Yellow Checkmark styling */
.bi-check-lg {
    -webkit-text-stroke: 1.5px; /* Makes the icon look bolder like the mockup */
}

/* Subtle float animation for the mockup image */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Border color adjustment */
.border-bottom {
    border-color: #ddd !important;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .features-list {
        margin-top: 2rem;
    }
}


/* Skills Section Background */
.skills-section {
    background-image: url('https://dsathemes.com/html/xlander/contact/img/parallax_bg/skills.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.skills-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(https://dsathemes.com/html/xlander/contact/img/parallax_bg/skills.jpg);
    /* background: rgba(0, 0, 0, 0.8); Darkened effect */
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.skill-underline {
    width: 60px;
    height: 3px;
    background-color: #ffcc00;
}

/* SVG Chart Styling */
.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 150px;
    max-height: 150px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: square; /* Matching the sharp ends in mockup */
    stroke: #ffcc00;
    transition: stroke-dasharray 0.3s ease;
}

.percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    text-anchor: middle;
    fill: #fff;
}

.skill-circle {
    width: 140px;
}

.skills-section h5 {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 40px;
    padding-left: 110px;
}


.showcase-section {
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Helvetica', 'Arial', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Monitor Layout */
.monitor-display {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -90px;
  perspective: 1000px; /* Optional: for 3D depth */
}

.monitor img {
  display: block;
  max-width: 100%;
  height: auto;
}

.monitor.center {
  z-index: 2;
  width: 50%; /* Main focus */
}

.monitor.side-left, 
.monitor.side-right {
  width: 30%;
  z-index: 1;
}

.monitor.side-left { margin-right: -5%; }
.monitor.side-right { margin-left: -5%; }

/* Features Row Styling */
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-title i {
  font-size: 1.1rem;
  margin-right: 15px;
  color: #333;
}

.feature-title h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  text-transform: capitalize;
}

.feature-item p {
  color: #777;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .skills-section h5{
    padding-left: 50px;
  }
  
  .monitor-display {
    flex-direction: column;
    align-items: center;
  }
  
  .monitor.center, .monitor.side-left, .monitor.side-right {
    width: 90%;
    margin: 10px 0;
  }
}


.features-block {
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 2x2 Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px; /* Vertical gap, Horizontal gap */
  margin-bottom: 60px;
}

/* Feature Content */
.feature-head {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-head i {
  font-size: 1.1rem;
  margin-right: 15px;
  color: #222;
}

.feature-head h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
  text-align: left;
}

/* Button Container */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background-color: #ffc107; /* Vibrant yellow */
  color: #222;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 15px 35px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.text-whitee{
  text-align: center;
  --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}


.features-dark {
  background-color: #1a1a1d; /* Deep dark grey */
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Pattern overlay */
  padding: 100px 0;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #eeeeee;
  margin-bottom: 8px;
  font-weight: 400;
}

.title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0;
}

.underline {
  width: 140px;
  height: 2px;
  background-color: #fdbd10; /* The UI yellow */
  margin: 20px auto 0;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

.feature-item {
  /* display: flex; */
  align-items: flex-start;
}

/* Icon Container */
.feature-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-right: 25px;
  color: #fdbd10; /* Icon color */
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgb(187, 187, 187);
    margin: 0px;
    padding-left: 65px;
}
/* Text Styling */
.feature-text h3 {
  font-size: 1.1rem;
  margin: -40px 262px 12px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tracking-widest {
    letter-spacing: 0.15rem;
    text-align: center;
}

.section-header .subtitle {
    font-size: 14px;
    /* letter-spacing: 1px; */
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #dddddd;
    margin-bottom: 10px;
    text-align: center;
}

.section-header .title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: black !important;
}

.section-header .subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    /* color: #333; */
    margin-bottom: 5px;
    color: black !important;
}
.newsletter p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 25px;
    text-align: center;
}
.sub-title {
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}
.item p {
    text-align: center;
    font-size: 13px;
    color: #666;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #bbbbbb; /* Greyed text for readability */
  margin: 0;
}

/* Mobile View */
@media (max-width: 850px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-text h3{
    margin: 0 0 12px 0;
  }
}


.history-section {
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header .underline {
  width: 80px;
  height: 2px;
  background-color: #ffcc00;
  margin: 0 auto;
}

/* Timeline Logic */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #eee;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

/* Year Badge (Centered) */
.year-badge {
  background-color: #ffcc00;
  color: #333;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Circle Node on line */
.timeline-node {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  z-index: 2;
}

/* Content Card */
.timeline-content {
  width: 40%;
  background-color: #f5f5f5;
  padding: 30px;
  position: relative;
}

.timeline-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  color: #333;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Positioning Alternating Cards */
.timeline-item.left { justify-content: flex-start; }
.timeline-item.right { justify-content: flex-end; }

/* Tooltip Arrows */
.timeline-content .arrow {
  position: absolute;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.left .timeline-content { margin-left: 5%; }
.left .timeline-content .arrow {
  right: -10px;
  border-left: 10px solid #f5f5f5;
}

.right .timeline-content { margin-right: 5%; }
.right .timeline-content .arrow {
  left: -10px;
  border-right: 10px solid #f5f5f5;
}

/* Start Badge specific */
.timeline-item.start { margin-bottom: 0; }
.timeline-item.start .year-badge { top: 0; position: relative; transform: translateX(-50%); }

/* Mobile View */
@media (max-width: 768px) {
  .timeline-line { left: 30px; }
  .year-badge, .timeline-node { left: 30px; transform: none; }
  .timeline-item.left, .timeline-item.right { justify-content: flex-start; }
  .timeline-content { width: 80%; margin-left: 60px !important; }
  .timeline-content .arrow { left: -10px !important; border-right: 10px solid #f5f5f5 !important; border-left: none !important; }
}


.facts-section {
  position: relative;
  /* Replace with your actual background image */
  background: url('your-background-image.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.overlay {
  /* background: rgba(0, 0, 0, 0.75); Darkens the image for text readability */
  padding: 80px 0;
  background-image: url(https://dsathemes.com/html/xlander/contact/img/parallax_bg/statistic-banner.jpg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Header Styling */
.facts-header {
  margin-bottom: 60px;
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #dddddd;
  margin-bottom: 10px;
}

.title {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
}

.underline {
  width: 100px;
  height: 2px;
  background-color: #fdbd10; /* The signature yellow from your previous sections */
  margin: 20px auto 0;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-width: 200px;
}

.number {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 30px;
  }
  
  .title {
    font-size: 1.4rem;
    padding: 0 15px;
  }
}


.portfolio-header-section {
  padding: 80px 0 40px;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styling */
.section-header {
  margin-bottom: 50px;
}

.section-header .subtitle {
  font-size: 0.9rem;
  /* color: #333; */
  color: #ffffff !important;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.section-header .title {
  font-size: 2.2rem;
  font-weight: 500;
  color:  #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.section-header .underline {
  width: 120px;
  height: 2px;
  background-color: #ffc107;
  margin: 15px auto 0;
}

/* Filter Navigation Styling */
.portfolio-filter ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px; /* Minimal gap between buttons as seen in image */
}

.filter-btn {
  display: inline-block;
  text-decoration: none;
  color: #444;
  background-color: #f4f4f4;
  padding: 12px 25px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.filter-btn:hover {
  background-color: #e9e9e9;
}

/* Active State */
.filter-btn.active {
  background-color: #ffc107;
  color: #222;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header .title {
    font-size: 1.6rem;
  }
  
  .portfolio-filter ul {
    gap: 10px;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 200px;
  }
}


.portfolio-grid-section {
  width: 100%;
  padding: 0;
  background-color: #fff;
}

.portfolio-container {
  display: grid;
  /* Creates 4 equal columns */
  grid-template-columns: repeat(4, 1fr);
  /* Adjust gap to 0 if you want the images to touch exactly as in the image */
  gap: 0; 
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* Maintains a consistent photographic ratio */
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.portfolio-item:hover img {
  transform: scale(1.1);
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 189, 16, 0.85); /* Signature yellow overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .portfolio-container {
    grid-template-columns: 1fr; /* 1 column for phones */
  }
}


.team-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styling */
.section-header {
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
}

.section-header .title {
  font-size: 2rem;
  font-weight: 400;
  margin: 10px 0;
  letter-spacing: 1px;
}

.section-header .underline {
  width: 100px;
  height: 2px;
  background-color: #ffc107;
  margin: 15px auto 0;
}

/* Grid Layout */
.team-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

/* Member Content */
.member-image {
  margin-bottom: 20px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
}

.member-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #222;
}

.member-info .role {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.member-info .bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #777;
  padding: 0 10px;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #ffc107;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .team-grid {
    justify-content: center;
  }
  
  .team-card {
    max-width: 350px;
  }
}


.pricing-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styling (Consistent with your landing page) */
.section-header {
  margin-bottom: 70px;
}

.section-header .subtitle {
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 2px;
}

.section-header .title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 10px 0;
}

.section-header .underline {
  width: 100px;
  height: 2px;
  background-color: #ffc107;
  margin: 20px auto 0;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Featured (Advanced) Plan */
.pricing-card.featured {
  background-color: #ffc107;
  border-color: #ffc107;
  transform: scale(1.05); /* Slightly larger as in image */
  z-index: 2;
}

/* Header/Titles */
.card-header {
  padding: 30px 10px;
}

.card-header h3 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin: 0;
}

/* Price Box Styling */
.price-box {
  background: #f4f4f4;
  padding: 40px 10px;
  position: relative;
}

.featured .price-box {
  background: rgba(255, 255, 255, 0.2);
}

.currency {
  font-size: 1.2rem;
  vertical-align: top;
  margin-right: 2px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
}

.cents {
  font-size: 1.2rem;
  vertical-align: top;
  text-decoration: underline;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
}

.featured .features-list li {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Buttons */
.card-footer {
  padding: 30px 10px;
  margin-top: auto;
}

.btn-select {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffc107;
  color: #222;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-select.dark {
  background-color: #222;
  color: #fff;
}
@media (max-width: 576px) {
  .client-logos {
    gap: 20px;
  }
}

.btn-select:hover {
  filter: brightness(90%);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .pricing-card.featured {
    transform: none;
  }

}


.clients-testimonials {
    padding: 100px 0;
    background-color: #fcfcfc;
    font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* Section Headers */
.section-header .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
}

.section-header .title {
    font-size: 32px;
    font-weight: 300;
    margin: 10px 0;
}

.section-header .underline {
    width: 100px;
    height: 1px;
    background-color: #ffc107;
    margin: 20px auto 60px;
}

/* Logo Grid */
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-row img {
    max-width: 160px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo-row img:hover {
    opacity: 1;
}

.carousel-controls .control-btn {
    background-color: #ffc107;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 2px;
    cursor: pointer;
}

/* Testimonials */
.stats-header {
    margin-top: 100px;
    font-size: 24px;
    font-weight: 300;
    color: #444;
}

.stats-header .highlight {
    color: #ffc107;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.speech-bubble {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 25px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: left;
}

.speech-bubble p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.bubble-tail {
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

/* Customer Profiles */
.customer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
}

.customer-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    text-align: left;
}

.profile-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.profile-info p {
    margin: 0;
    font-size: 12px;
    color: #999;
}


.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 5px;
}

.section-header .title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-header .underline {
    width: 100px;
    height: 2px;
    background-color: #ffc107;
    margin: 0 auto;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    text-align: left;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.news-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 12px;
    font-style: italic;
    color: #999;
    margin-bottom: 15px;
}

.news-meta .comments {
    color: #ffc107;
    font-weight: 600;
}

.news-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-read-more {
    display: inline-block;
    background-color: #ffc107;
    color: #222;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-read-more:hover {
    background-color: #e0a800;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}


.hero {
  height: 300px;
  background: url('your-image.jpg') no-repeat center center/cover;
  position: relative;
}

/* Dark overlay */
.overlay {
  /* background: rgba(0, 0, 0, 0.6); */
  background-image: url(https://dsathemes.com/html/xlander/contact/img/parallax_bg/statistic-banner.jpg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.content {
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.content h1 {
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  transition: 0.3s;
}


.member-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #222;
    text-align: left;
}



/* Yellow button */
.primary {
  background: #f4b400;
  color: #000;
}

/* Outline button */
.secondary {
  background: #f4b400;
  color: #000;
}

/* Hover */
.btn:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 20px;
  }
}

/***Slider***/
  .client-section { padding: 60px 0; text-align: center; font-family: sans-serif; }
  
  .subtitle { color: #f1f1f1; font-size: 14px; letter-spacing: 2px; margin-bottom: 5px; }
  .section-title h2 { font-size: 28px; margin-top: 0; font-weight: 500; }
  .line { width: 80px; height: 3px; background: #ffbc00; margin: 15px auto 50px; }

  .client-swiper { padding-bottom: 50px !important; }
  .swiper-slide { display: flex; justify-content: center; align-items: center; }
  .swiper-slide img { max-width: 150px; height: auto; filter: grayscale(0%); transition: 0.3s; }

  /* Custom Yellow Square Pagination */
  .swiper-pagination-bullet {
    width: 20px !important;
    height: 20px !important;
    border-radius: 0% !important; /* Makes it a square */
    background: #ffbc00 !important;
    opacity: 0.5;
    
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
/***Slider***/
.contact-section {
  background: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.sub-title {
  color: #777;
  font-size: 14px;
  letter-spacing: 1px;
}

.title {
  font-size: 28px;
  margin: 10px 0;
  font-weight: 600;
}

.underline {
  width: 60px;
  height: 3px;
  background: #f4b400;
  margin: 10px auto 40px;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item {
  flex: 1;
  min-width: 220px;
  margin: 20px 10px;
}

.icon {
  width: 50px;
  height: 50px;
  margin: auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: #f4b400;
}

.item h4 {
  margin: 15px 0 5px;
  font-size: 14px;
  font-weight: bold;
}

.item p {
  font-size: 13px;
  color: #666;
}

.email {
  color: #f4b400;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    align-items: center;
  }
  
 
}


  .testimonial-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything for all screens */
  }

  .quote-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    position: relative;
    margin-bottom: 40px;
    text-align: center; /* Centers the text inside the box */
  }

  .quote-box p {
    color: #888;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
  }

  /* The Centered Triangle Pointer */
  .quote-box::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 22px;
    height: 22px;
    background: #fff;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
  }

  .user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    width: 100%;
    max-width: 250px; /* Keeps the info section compact */
    margin: 0 auto;
  }

  .user-meta img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
  }

  .user-text h4 { margin: 0; font-size: 19px; color: #111; font-weight: 600; }
  .user-text p { margin: 0; font-size: 14px; color: #999; }

  .swiper-pagination { margin-top: 20px; position: relative; }







.newsletter {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.newsletter h2 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 25px;
}

/* Form */
.subscribe-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 13px;
}

.subscribe-form button {
  background: #f4b400;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.subscribe-form button:hover {
  opacity: 0.8;
}

/* Copyright */
.copyright {
  margin-top: 20px;
  font-size: 12px;
}

.copyright span {
  color: #f4b400;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: #aaa;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons svg:hover {
  fill: #f4b400;
}

/* Responsive */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    margin-bottom: 10px;
  }
}

.accordion-body {
    padding: 0 0 20px 33px;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

  .feature-showcase {
    background-color: #f9f9f9;
  }

  .tablet-img {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  }

  /* Accordion Customization */
  .accordion-item {
    background: transparent !important;
    border-bottom: 1px solid #ddd !important;
  }

  .accordion-item:last-child {
    border-bottom: none !important;
  }

  .accordion-button {
    background-color: transparent !important;
    color: #444 !important;
    font-weight: 500;
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: none !important;
  }

  /* Icon Style */
  .accordion-button .fa-check {
    color: #ffbc00; /* Matching your logo's yellow */
    margin-right: 15px;
    font-size: 18px;
  }

  /* Active State Styling */
  .accordion-button:not(.collapsed) {
    color: #000 !important;
  }

  .accordion-body {
    padding: 0 0 20px 33px; /* Aligns description text under the heading text */
    color: #777;
    font-size: 14px;
    line-height: 1.6;
  }

  /* Hide the default Bootstrap arrow if you want it to look like a list */
  /* .accordion-button::after { display: none; } */




  /* Base button style */
  .nav-pills .nav-link {
    background-color: #f1f1f1;
    color: #333;
    border-radius: 0; /* Square edges from your image */
    margin: 0 5px;
    padding: 12px 25px;
    font-weight: 500;
    transition: 0.3s;
  }

  /* Active/Yellow button style */
  .nav-pills .nav-link.active {
    background-color: #ffbc00 !important; /* Yellow theme */
    color: #000 !important;
  }

  /* Hover effect */
  .nav-pills .nav-link:hover:not(.active) {
    background-color: #e0e0e0;
  }

  /* Image styling */
  .tab-content img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Keeps images looking professional */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }



  
  /* Header Styling */
  .section-title { letter-spacing: 1px; color: #333; }
  .yellow-divider { width: 50px; height: 2px; background: #ffbc00; margin-top: 15px; }

  /* Vertical Timeline Line */
  .main-timeline { position: relative; max-width: 1100px; margin: 50px auto; }
  .main-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #eeeeee;
    top: 0; bottom: 0;
    left: 50%;
    margin-left: -1px;
  }

  /* Timeline Item Containers */
  .timeline-box { padding: 15px 40px; position: relative; width: 50%; box-sizing: border-box; }
  .left { left: 0; text-align: right; }
  .right { left: 50%; text-align: left; }

  /* Year Badges centered on the line */
  .badge-year {
    background: #ffbc00;
    color: #000;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 25px;
    z-index: 10;
  }
  .left .badge-year { right: -25px; }
  .right .badge-year { left: -25px; }

  /* The Content Cards */
  .content-card {
    padding: 25px;
    background-color: #f9f9f9; /* Off-white from image */
    position: relative;
    border-radius: 2px;
    transition: 0.3s ease;
    cursor: pointer;
  }

  .content-card h4 { font-size: 18px; margin-bottom: 12px; }
  .content-card p { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 0; }

  /* HOVER EFFECT: Turns grey */
  .content-card:hover {
    background-color: black; /* Smooth grey hover */
    color: white;
  }
  .content-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: left;
}
  /* Triangle Pointers */
  .content-card::after {
    content: "";
    position: absolute;
    top: 27px;
    width: 0; height: 0;
    border-style: solid;
    transition: 0.3s ease;
  }
  .left .content-card::after {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f9f9f9;
  }
  .right .content-card::after {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f9f9f9 transparent transparent;
  }

  /* Hover Triangle Sync */
  .left .content-card:hover::after { border-left-color: #e9ecef; }
  .right .content-card:hover::after { border-right-color: #e9ecef; }

  /* Footer Start Badge */
  .timeline-footer { text-align: center; margin-top: 40px; position: relative; z-index: 5; }
  .start-badge { background: #ffbc00; padding: 6px 20px; font-weight: bold; font-size: 14px; }

  /* Mobile Responsiveness */
  @media (max-width: 767px) {
    .main-timeline::after { left: 31px; }
    .timeline-box { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
    .right { left: 0; }
    .left .badge-year, .right .badge-year { left: 15px; }
    .left .content-card::after {
      left: -10px;
      border-width: 10px 10px 10px 0;
      border-color: transparent #f9f9f9 transparent transparent;
    }
    .left .content-card:hover::after { border-right-color: #e9ecef; border-left-color: transparent; }
  }
