/* Main Container (Parent) */
.main-container {
  position: relative; /* Required for absolute positioning of children */
  min-height: 70vh;
  padding: 2rem;
  z-index: 1; /* Ensures content stays above background */
}

/* Background Image Layer */
.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/title.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1; /* Adjust transparency (0.1 to 0.3 for subtlety) */
  z-index: -1; /* Places it behind content */
  
  /* Optional: Darken overlay for better contrast */
  background-color: rgba(0, 0, 0, 0);
  background-blend-mode: overlay;
}

.background-layer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* White overlay (adjust %) */
  z-index: -1;
}

/* Corporate Header Styles */
.corporate-header {
  font-family: 'Inter', sans-serif;
  background: #999b98;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-container {
  position: relative;
}


.luxury-logo {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.logo-line-1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 1;
}

.logo-line-2 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: #ffffff;
  margin-top: 0.2rem;
  line-height: 1;
}

.logo-line-3 {
  font-size: 0.8rem;
  letter-spacing: 8px;
  color: #c8a050;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.logo-ornament {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border: 1px solid rgb(253, 171, 6);
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.logo-container:hover .logo-ornament {
  opacity: 3;
}

.search-container {
  position: relative;
  width: 50%;
}

.ai-tag {
  position: absolute;
  top: -20px;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #ffffff;
}

.new-badge {
  background: #6fa112;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 0.7rem;
}

.search-bar {
  display: flex;
  width: 90%;
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
}

.search-btn {
  background: #c8a050;
  color: rgb(0, 0, 0);
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.service-highlight {
  background: rgb(221, 219, 219);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.service-highlight h2 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-cardd h3 {
  color: #571805;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#hero-taglinee {
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 2;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}

.tagline-word, .tagline-highlight {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: calc(var(--word-index) * 0.1s + 0.1s);
}

.tagline-highlight {
  color: #000000;
  font-weight: 400;
}

/* Add animation for each word with delay */
.hero-tagline span:nth-child(1) { animation-delay: 0.1s; }
.hero-tagline span:nth-child(2) { animation-delay: 0.2s; }
.hero-tagline span:nth-child(3) { animation-delay: 0.3s; }
.hero-tagline span:nth-child(4) { animation-delay: 0.4s; }
.hero-tagline span:nth-child(5) { animation-delay: 0.5s; }
.hero-tagline span:nth-child(6) { animation-delay: 0.6s; }
.hero-tagline span:nth-child(7) { animation-delay: 0.7s; }
.hero-tagline span:nth-child(8) { animation-delay: 0.8s; }
.hero-tagline span:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cta-primary {
  background: #1a365d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.cta-secondary {
  background: white;
  color: #000000;
  border: 1px solid #1a365d;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.corporate-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #000000;
  background: linear-gradient( #ffffff, #d6af42);
}

:root {
  --primary: #2c3e50;
  --secondary: #080808;
  --accent: #e74c3c;
  --text-light: #ecf0f1;
  --text-dark: #000000;
  --bg-light: #ffffff;
  --bg-dark: #000000;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== PROFESSIONAL NAVIGATION SYSTEM ===== */
.corporate-header {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  z-index: 1000;
}

.sticky-header {
  position: sticky;
  top: 0;
  animation: fadeInDown 0.5s ease-out;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.consultant-contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.contact-nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-callout {
  font-weight: 600;
  color: #000000;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding-left: 5%;
}

.corporate-nav ul {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link, .nav-cta {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-link:hover {
  background-color: rgba(41, 128, 185, 0.1);
  color: var(--secondary);
}

.nav-cta {
  background-color: var(--secondary);
  color: white !important;
  margin-left: 10px;
  border: 2px solid var(--secondary);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--secondary) !important;
}

/* Dropdown Menu System */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* Starts below the button */
  left: 0;
  width: 200px;
  background: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  opacity: 0; /* Hidden initially */
  pointer-events: none; /* Disable interactions when hidden */
  transition: opacity 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu li a {
 position: absolute;
  width: 100%;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
  background: #f9f9f9;
}

/* Position each item manually */
.item-1 {
  top: 0; /* First item at the top */
}
.item-2 {
  top: 40px; /* Second item 40px below the first */
}
.item-3 {
  top: 80px; /* Third item 80px below the first */
}

.dropdown-menu li a:hover {
   background: #ddd;
    color: var(--secondary);
}

.dropdown-icon {
  font-size: 0.7em;
  margin-left: 5px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dark Mode System */
.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.dark-mode .corporate-header {
  background-color: var(--bg-dark);
  border-bottom: 1px solid #2c3e50;
}

.dark-mode .nav-link {
  color: var(--text-light);
}

.dark-mode .nav-link:hover {
  color: var(--secondary);
}

.dark-mode-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.dark-mode .dark-mode-toggle {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .corporate-nav ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .consultant-contact-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .corporate-meta {
    width: 100%;
    justify-content: space-between;
    padding-left: 20%;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* HEADER ANIMATION SYSTEM */
.header-animate {
  position: relative;
  overflow: hidden;
}

.header-ai-tagline {
  position: absolute;
  left: 0;
  width: 100%;
  color: #000000;
  font-size: 0.8em;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-glow {
  background: linear-gradient(270deg, #2c3e50, #2980b9, #2c3e50);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animation Classes */
.animate-glow {
  animation: corporateGlow 8s ease infinite;
}

.animate-tagline-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes corporateGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
  .background-layer {
    opacity: 0.1; /* Further reduce opacity on mobile */
  }
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;700&family=Montserrat:wght@300;400;700&display=swap');
/* Section Styles */
section {
    padding: 40px 0;
}

h2 {
    color: linear-gradient( #1e1e1f, #8c9ba1);
    font-size: 2.8rem;
    margin-bottom: 15px;
}


h3 {
    color: #50464c;
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

p {
  font-size: 1.4rem;
  font-style: italic
}
/* Lists Styling */
.benefits-list,
.services-list,
.team-list {
    list-style-type: none;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefits-list li,
.services-list li,
.team-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before,
.services-list li:before,
.team-list li:before {
    content: "•";
    color: #44150f;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bolder;
}

/* Service Categories */
.service-category {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-items {
    columns: 2;
    column-gap: 30px;
    list-style-type: none;
    padding: 0;
}

.service-items li {
    padding: 8px 0;
    break-inside: avoid;
    position: relative;
    padding-left: 25px;
}

.service-items li:before {
    content: "→";
    color: #686e69;
    position: absolute;
    left: 0;
    font-weight: bolder;
}


/* Contact Section Styling */
.contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 5px;
}

.contact-info-item h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-info-item p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #999;
    background: #fff;
    padding: 0 5px;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: #2c3e50;
}

.form-group select {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c3e50'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card,
    .contact-form {
        width: 100%;
    }
}

/* Footer */
.main-footer {
    background-color: #887b7b;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-items {
        columns: 1;
    }
    
    .main-header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
}
/* Service Page Specific Styles */
.service-details {
    padding: 50px 0;
}

.back-button {
    text-align: center;
    margin: 30px 0;
}

.btn {
    display: inline-block;
    background:linear-gradient( #1e1e1f, #8c9ba1);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background:linear-gradient( #1e1e1f, #8c9ba1);
}
/* Make service cards clickable */
.service-card {
    display: block;
    text-decoration: none;
    color:#797e80 ;
    transition: transform 0.3s;
    font-weight: bolder;
    font-style: italic;
    background:linear-gradient( #c2bfbf, #ffffff);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background:linear-gradient( #4b4949, #ffffff)
}

/* ====== About Section ====== */
.about-section {
  padding: 60px 0;
  background: #f8fafc;
}

.section-title {
  text-align: left;
  color: #750c2f;
  margin-bottom: 30px;
  font-size: 2.8rem;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-top: 30px;
}

.about-img-top, 
.about-img-bottom {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.1);
  transition: transform 0.3s ease;
}

.about-img-top:hover, 
.about-img-bottom:hover {
  transform: translateY(-5px);
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 4px;
  line-height: 1.7;
  color: #333;
}

/* Responsive Design */
@media (max-width: 100px) {
  .about-wrapper {
    flex-direction: column;
  }
  
  .about-images {
    flex-direction: row;
  }
  
  .about-img-top, 
  .about-img-bottom {
    width: 10%;
  }
}

@media (max-width: 100px) {
  .about-images {
    flex-direction: column;
  }
  
  .about-img-top, 
  .about-img-bottom {
    width: 10%;
  }
}

/* ====== Why Choose Us Section ====== */
.why-choose-us {
  padding: 60px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.divider {
  height: 2px;
  width: 80px;
  background: #0056b3;
  margin: 15px auto 20px;
}

.section-description {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background: linear-gradient( #4b1630, #ffffff);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 200px;
  height: 200px;
  object-fit: fill;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #47494b;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Detailed Services Section */
.detailed-services {
  padding: 60px 0;
  background: #f8fafc;
}

.service-category {
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.08);
  background-color: #ffffff;
}

.gradient-blue {
  background: linear-gradient(135deg, #012041, #fafafa);
  padding: 16px 25px;
  color: white;
}

.service-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-content {
  display: flex;
  padding: 25px;
  gap: 30px;
}

.service-items {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 30px;
}

.service-items li {
  padding: 8px 0;
  position: relative;
  padding-left: 28px;
  break-inside: avoid;
  color: #797676;
  font-weight: 600;
  font-style: italic;
}

.service-items li:before {
  content: "•";
  color: #797676;
  font-size: 24px;
  position: absolute;
  left: 5px;
  top: 2px;
}

.service-image {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
}

.service-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e1e5eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
  }
  
  .service-items {
    columns: 1;
  }
  
  .service-image {
    margin: 20px auto 0;
    flex: none;
  }
}

@media (max-width: 480px) {
  .service-header h3 {
    font-size: 18px;
  }
  
  .service-image img {
    width: 120px;
    height: 120px;
  }
}

#anfaz {
  color: white;
}

/* Leadership Section Styling */
.leadership-section {
    padding: 5rem 0;
    background: #f9fbfd;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1a365d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #2b6cb0;
    margin: 1rem auto;
}

.section-tagline {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.leadership-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    background: #ebf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-icon svg {
    width: 80px;
    height: 80px;
    fill: #2b6cb0;
    opacity: 0.3;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tenure {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.leadership-quote {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    padding: 1rem 0;
    border-top: 1px solid #edf2f7;
}

.team-cta {
    text-align: center;
    margin-top: 2rem;
}

.team-cta p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #2b6cb0;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e4e8c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 180px;
    }
}

/* Services Slideshow Styling */
.services-slideshow {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.slideshow-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.service-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  background: white;
}

.service-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  display: flex;
  height: 100%;
}

.text-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(30, 41, 59, 0.05);
  position: absolute;
  top: 1rem;
  right: 3rem;
  line-height: 1;
}

.text-content h3 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.text-content h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #720b0b;
}

.service-categories {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.category {
  flex: 1;
}

.category h4 {
  font-size: 1.1rem;
  color: #720b0b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category ul {
  list-style: none;
  padding-left: 0;
}

.category li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
}

.category li:before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #720b0b;
}

.cta-button {
  display: inline-block;
  background: #720b0b;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  align-self: flex-start;
  margin-top: 1rem;
  border: 2px solid #720b0b;
}

.cta-button:hover {
  background: transparent;
  color: #720b0b;
}

.visual-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #3b82f6;
  top: -50px;
  right: -50px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 150px solid #10b981;
  bottom: -70px;
  left: -30px;
  transform: rotate(15deg);
}

.square {
  width: 100px;
  height: 100px;
  background: #f59e0b;
  bottom: 20%;
  right: 10%;
  transform: rotate(45deg);
}

.slideshow-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.pagination-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #410202;
  transform: scale(1.2);
}

.navigation-arrows {
  display: flex;
  gap: 1rem;
}

.arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.arrow:hover {
  background: #410202;
  color: white;
  border-color: #410202;
}

/* Responsive Design */
@media (max-width: 992px) {
  .slide-content {
    flex-direction: column;
  }
  
  .visual-content {
    height: 300px;
  }
  
  .text-content {
    padding: 2rem;
  }
  
  .service-categories {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
  }
  
  .slideshow-container {
    height: auto;
  }
  
  .slide-number {
    font-size: 3.5rem;
    top: 0.5rem;
    right: 1.5rem;
  }
  
  .text-content h3 {
    font-size: 1.5rem;
  }
}

#anfazlove{
  font-weight: 3rem;
  font-style: italic;
  font-size: large;
}
