/*
Theme Name: Ecompur
Theme URI: https://divizoom.com/product/divipro
Template: Divi
Author: Divizoom
Author URI: https://divizoom.com
Description: Smart. Flexible. Beautiful. Divi child theme pro is the most powerful child theme in our collection.
Tags: responsive-layout,one-column,two-columns,three-columns,four-columns,left-sidebar,right-sidebar,custom-background,custom-colors,featured-images,full-width-template,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready
Version: 2.1.0
Updated: 2021-11-22
*/

/* Base Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7e22ce;
  --accent: #f59e0b;
  --light: #f8fafc;
  --dark: #1e293b;
  --gray: #64748b;
  --success: #10b981;
  --font-size: 1.2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kalpurush", "SolaimanLipi", Arial, sans-serif;
  font-size:var(--font-size);
}

body {
  line-height: 1.7;
  color: var(--dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  font-size:var(--font-size);
}
.cta .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;	
}
.cta .container p{
	text-align:center;
}


section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #f97316);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px 0; */
  padding: 6px 0;
  margin-top: 32px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo a {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  margin-left: 10px;
}

.logo-text span {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover:after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  transition: transform 0.3s ease;
}
.mobile-menu:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
@media only screen and (max-width:980px){
	.hero-container{
flex-direction:column;
}
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}


.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%232563eb" opacity="0.03"/></svg>');
  background-size: cover;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

/* Services Section */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

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

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

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* Process Section */
.process {
  background: white;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 20%;
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-content p {
  color: var(--gray);
  font-size: 0.95rem;
}
/* About Section */
/* .about {
  padding: 100px 0;
  background: var(--light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
}

.about-text h2:after {
  left: 0;
  transform: none;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
} */
/* About Section - Professional Redesign */
/* About Section - Professional Content Design */
.ecompur-about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.ecompur-section-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.ecompur-section-title h2 {
  font-size: 2.5rem;
}

/* Mission Statement */
.ecompur-mission-statement h3 {
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
}

.ecompur-mission-statement h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.ecompur-about-highlights {
  margin: 40px 0;
}

.ecompur-highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ecompur-highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.ecompur-highlight-content h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.ecompur-highlight-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Story Section */
.ecompur-story {
  margin: 40px 0;
  padding: 30px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 15px;
}

.ecompur-story h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.ecompur-story p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Values Section */
.ecompur-values {
  margin: 40px 0;
}

.ecompur-values h4 {
  color: var(--dark);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.ecompur-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.ecompur-value-card {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.ecompur-value-card:hover {
  transform: translateY(-5px);
}

.ecompur-value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.ecompur-value-card h5 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.ecompur-value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Why Choose Us */
.ecompur-why-choose {
  margin: 40px 0;
}

.ecompur-why-choose h4 {
  color: var(--dark);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.ecompur-choose-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecompur-reason {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ecompur-reason:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.ecompur-reason-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.ecompur-reason-content h5 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.ecompur-reason-content p {
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* Right Side Visual Elements */
.ecompur-about-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.ecompur-visual-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.ecompur-card-header h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.ecompur-card-header p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.ecompur-team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.ecompur-team-stat {
  text-align: center;
}

.ecompur-stat-circle {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.ecompur-stat-circle span {
  font-size: 1.5rem;
  font-weight: bold;
}

.ecompur-team-stat p {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}

/* Client Testimonial */
.ecompur-client-testimonial {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ecompur-testimonial-quote {
  position: relative;
  margin-bottom: 20px;
}

.ecompur-testimonial-quote i {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.2;
}

.ecompur-testimonial-quote p {
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
}

.ecompur-client-info {
  display: flex;
  align-items: center;
}

.ecompur-client-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
}

.ecompur-client-details h5 {
  margin-bottom: 5px;
  color: var(--dark);
}

.ecompur-client-details p {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

/* Achievements */
.ecompur-achievements {
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
}

.ecompur-achievements h5 {
  color: var(--dark);
  margin-bottom: 15px;
}

.ecompur-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecompur-achievements li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--gray);
}

.ecompur-achievements i {
  color: var(--accent);
  margin-right: 10px;
  width: 20px;
}

/* CTA Box */
.ecompur-cta-box {
  background: linear-gradient(135deg, var(--dark), #2d3748);
  color: white;
  padding: 50px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

.ecompur-cta-content h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 2rem;
}

.ecompur-cta-content p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.ecompur-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ecompur-btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
}

.ecompur-phone-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.ecompur-phone-link:hover {
  color: var(--accent);
}

.ecompur-phone-link i {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .ecompur-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecompur-about-visual {
    position: static;
  }

  .ecompur-team-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ecompur-highlight-item {
    flex-direction: column;
    text-align: center;
  }

  .ecompur-highlight-icon {
    margin-right: 0;
    margin: 20px auto;
  }

  .ecompur-reason {
    flex-direction: column;
    text-align: center;
  }

  .ecompur-reason-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .ecompur-team-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ecompur-cta-actions {
    flex-direction: column;
  }

  .ecompur-values-grid {
    grid-template-columns: 1fr;
  }
  .ecompur-values h4,.ecompur-why-choose h4, .ecompur-card-header h4{
    text-align: center;
    font-size: 1.6rem;
  }
  .ecompur-card-header p{
    text-align: center;
  }

}

@media (max-width: 576px) {
  .ecompur-mission-statement h3 {
    font-size: 1.6rem;
  }

  .ecompur-cta-box {
    padding: 30px 20px;
  }

  .ecompur-cta-content h3 {
    font-size: 1.6rem;
  }
}
/* Testimonials */
.testimonials {
  background: white;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:before {
  content: '"';
  font-size: 5rem;
  color: #f1f5f9;
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 0;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
}

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

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.client-details h4 {
  margin-bottom: 5px;
}

.client-details p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-size: 1.3rem;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-steps:before {
    display: none;
  }

  .process-step {
    width: 100%;
    margin-bottom: 40px;
  }

  .step-number {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
    .container.header-container{
        margin-top: 45px;
    }
  .mobile-menu {
    display: block;
    margin: auto;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 100;

            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
      nav ul li:last-child {
        border-bottom: none;
    }
        nav ul li a:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 150px 0 80px;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
    text-align: center;
  }
}

/* Hero Section */
.career-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.career-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%232563eb" opacity="0.03"/></svg>');
  background-size: cover;
}

.career-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align:center!important;
}

.career-hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.career-hero h1 span {
  color: var(--primary);
}

.career-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.job-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.job-meta-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.career-hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Job Details Section */
.job-details {
  background: white;
}

.job-details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.job-description h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}

.job-description p {
  margin-bottom: 25px;
  color: var(--gray);
  font-size:var(--font-size);
}

.responsibilities-list,
.requirements-list,
.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.responsibilities-list li,
.requirements-list li,
.benefits-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--gray);
  font-size:var(--font-size);
}

.responsibilities-list li:before,
.requirements-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.benefits-list li:before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.job-summary {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  height: fit-content;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.job-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.summary-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item h4 {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.summary-item p {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

/* Application Form */
.application-form {
  background: var(--light);
  padding: 80px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-title h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

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

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-upload-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--light);
  border: 1px dashed #cbd5e0;
  border-radius: 6px;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-btn:hover {
  background: #f1f5f9;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Why Work With Us */
.why-work {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  font-size:var(--font-size);
}

.benefit-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--gray);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-size: 1.3rem;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .job-details-container {
    grid-template-columns: 1fr;
  }

  .job-summary {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 100;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
    text-align: center;
    padding: 12px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .career-hero {
    padding: 150px 0 80px;
  }

  .career-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .form-container {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .career-hero h1 {
    font-size: 2.2rem;
  }

  .job-meta {
    flex-direction: column;
    align-items: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
