.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  z-index: 0;
}

.hero-container {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
  margin-top: 0; /* Remove this */
}



.hero-container h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6b9d, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-container h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 10px;
  color: whitesmoke;
}

.hero-container p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-top: 20px;
  line-height: 1.6;
  color: wheat;
}

.hero-btn {
  margin-top: 30px;
}

.hero-btn a {
  background-color: #007bff;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-btn a:hover {
  background-color: #0056b3;
}

/* Container */
.containerr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styling */
.sectionn {
  padding: 80px 0;
}

.sectionn-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Content */
.about-content {
  background: rgba(16, 20, 32, 0.8);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-text p {
  color: whitesmoke;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.global-presence {
  margin-top: 2rem;
}

.country-presence {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.country-flag {
  font-size: 2rem;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
  color: white;
}

.country-info h3 {
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.country-info p {
  margin-bottom: 0;
}

/* Why Choose Us */
.featuress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.featuree-card {
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background-clip: padding-box;
}
.featuree-card h3 {
  margin-bottom: 10px;
  color: white;
}
.featuree-card p {
  color: whitesmoke;
 line-height:25px;
}

.featuree-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featuree-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Services Grid */
.servicess-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.services-card p {
  color: whitesmoke;
 line-height:25px;
}

.services-card {
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background-clip: padding-box;
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-left-color: #667eea;
}

.services-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: whitesmoke;
}

/* Service card icons */
.service-icon {
  color: #667eea;
  margin-right: 10px;
}

/* Tech Stack */
.tech-stack-container {
  margin-top: 3rem;
}

.tech-stack-category {
  margin-bottom: 3rem;
}

.tech-stack-category h3 {
  color: #38bdf8;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.tech-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background-clip: padding-box;
}
.tech-item h4 {
  color: white;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.tech-item .tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: darkgray;
  transition: transform 0.3s ease, color 0.3s ease;
    
}
.tech-item .tech-icon:hover{
  color: white;
  transform: scale(1.2); 
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.industry-card h3 {
  color: white;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.case-study-card {
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(16, 20, 32, 0.8);
}

.case-study-card h3 {
  color: #38bdf8;
  margin-bottom: 1rem;
}

.case-study-location {
  color: #667eea;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.case-study-stack {
  color: #a5b4fc;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-style: italic;
}

.case-study-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-features li {
  color: whitesmoke;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.case-study-features li:before {
  content: "•";
  color: #667eea;
  position: absolute;
  left: 0;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin: 4rem 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}

.process-step:nth-child(even) .process-content {
  margin-left: calc(50% + 3rem);
  margin-right: 0;
}

.process-step:nth-child(odd) .process-content {
  margin-right: calc(50% + 3rem);
  margin-left: 0;
}

.process-content {
  width: calc(50% - 3rem);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 20px;
  border-left: 4px solid transparent;
}
.process-content h3 {
  margin-bottom: 10px;
  color: white;
}
.process-content p {
  color: whitesmoke;
}

.process-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
}

/* Benefits */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.benefit-title {
  color: white;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-container {
  margin-top: 4rem;
}

.testimonials-container h3 {
  text-align: center;
  color: #38bdf8;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.testimonial-card {
  background: rgba(16, 20, 32, 0.8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.testimonial-text {
  color: whitesmoke;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: #a5b4fc;
  font-weight: 600;
}

/* FAQ */
.faqq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faqq-question {
  padding: 1.5rem;
  background: #101420;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: white;
}

.faqq-answer {
  background: #1a1f2d;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: whitesmoke;
}

.faqq-answer.active {
  max-height: 200px;
  padding: 1.5rem;
}

/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
      background: rgba(16, 20, 32, 0.8);
  text-align: center;
  padding: 100px 20px;
  border-radius: 20px;
  margin: 80px auto;
  max-width: 1200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-text {
  color: white;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-btn a {
  color: white;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:first-child {

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    color: #667eea;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:first-child a {
  color: #667eea;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container h1 {
    font-size: 3rem;
  }
  
  .hero-container h2 {
    font-size: 2.2rem;
  }
  
  .sectionn-title {
    font-size: 2.2rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step:nth-child(even) .process-content,
  .process-step:nth-child(odd) .process-content {
    margin-left: 80px;
    margin-right: 0;
    width: calc(100% - 80px);
  }
  
  .process-number {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 60px 20px;
  }
  
  .hero-container h1 {
    font-size: 2.5rem;
  }
  
  .hero-container h2 {
    font-size: 1.8rem;
  }
  
  .hero-container p {
    font-size: 1.1rem;
  }
  
  .sectionn {
    padding: 60px 0;
  }
  
  .sectionn-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-content {
    padding: 2rem;
  }
  
  .country-presence {
    flex-direction: column;
  }
  
  .country-flag {
    margin-bottom: 1rem;
  }
  
  .cta-btn-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-container h1 {
    font-size: 2rem;
  }
  
  .hero-container h2 {
    font-size: 1.5rem;
  }
  
  .sectionn-title {
    font-size: 1.8rem;
  }
  
  .featuree-card,
  .services-card {
    padding: 1.5rem;
  }
  
  .process-content {
    padding: 1.5rem;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sectionn {
  animation: fadeIn 0.8s ease forwards;
}

/* Delay animations for each section */
.sectionn:nth-child(1) { animation-delay: 0.1s; }
.sectionn:nth-child(2) { animation-delay: 0.2s; }
.sectionn:nth-child(3) { animation-delay: 0.3s; }
.sectionn:nth-child(4) { animation-delay: 0.4s; }
.sectionn:nth-child(5) { animation-delay: 0.5s; }
.sectionn:nth-child(6) { animation-delay: 0.6s; }
.sectionn:nth-child(7) { animation-delay: 0.7s; }
.sectionn:nth-child(8) { animation-delay: 0.8s; }
.sectionn:nth-child(9) { animation-delay: 0.9s; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Accessibility Focus Styles */
/* a:focus, button:focus {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
} */

/* Print Styles */
@media print {
  .video-bg, .overlay, .hero-btn {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .sectionn {
    padding: 20px 0;
    break-inside: avoid;
  }
  
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }
}



/* for web dev page only  */

/* Why Choose Section - Unique Class Names */
.why-choose-section {
  padding: 80px 0;
  animation: fadeIn 0.8s ease forwards;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-benefits {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-column {
  flex: 1;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background: rgba(16, 20, 32, 0.8);
  transition: all 0.3s ease;
}

.why-choose-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-column h3 {
  color: #38bdf8;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  color: whitesmoke;
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  font-size: 1.1rem;
}

.why-choose-list li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #667eea;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose-benefits {
    flex-direction: column;
  }
  
  .why-choose-column {
    padding: 1.5rem;
  }
  
  .why-choose-list li {
    font-size: 1rem;
  }
}



/* pricing section  */

.pricing-section {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px
}

.pricing-card {
	position: relative;
	width: 280px;
	padding: 0px 20px 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .18);
	overflow: hidden;
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .25)
}

.section-headingg {
	text-align: center;
	background: linear-gradient(90deg, #38bdf8, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 50px;
	margin-top: 50px;
	position: relative
}

.section-headingg::after {
	content: "";
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #00c6ff, #0072ff);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px
}

.plan-title {
	    background: linear-gradient(90deg, #38bdf8, #b8b8b8);
		-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	margin-top: 40px;
	margin-bottom: 30px;
}

.plan-sub {
	font-size: 13px;
	color: #d0d0d0;
	margin-bottom: 25px
}



.featuress {
    text-align: left;
    margin: 0 auto 20px;
    padding-left: 0;
    list-style: none;
    max-width: 230px;
    max-height: 200px; /* Fixed height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-right: 5px; /* Prevents text from touching scrollbar area */
}

.featuress::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}


.sub-features {
    margin-top: 5px;
    padding-left: 20px;
    list-style-type: none;
}

.sub-features li {
    font-size: 12px;
    color: #d0d0d0;
    margin: 5px 0;
    position: relative;
    padding-left: 15px;
}

.sub-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.featuress li {
    margin: 15px 0;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #fff;
}

.featuress li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00e676;
	font-weight: 700;

}

.featuress li.inactive::before {
    content: "✘";
    color: #ef5350;
}

.featuress li.inactive {
    color: #ccc;
}

.btn-order {
	display: inline-block;
	margin-top: 15px;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 14px;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: .3s ease;
}

.btn-basic {
	background: linear-gradient(to right, #00c6ff, #0072ff);
}

.btn-standart {
	background: linear-gradient(to right, #7f00ff, #e100ff);
}

.btn-premium {
	background: linear-gradient(to right, #ff00cc, #333399);
}

.btn-order:hover {
	opacity: .9
}