.elementor-61 .elementor-element.elementor-element-82dca3d > .elementor-container{min-height:400px;}.elementor-61 .elementor-element.elementor-element-3b449c6 > .elementor-container{min-height:400px;}.elementor-61 .elementor-element.elementor-element-64f700c > .elementor-container{min-height:400px;}.elementor-61 .elementor-element.elementor-element-b915982 > .elementor-container{min-height:400px;}.elementor-61 .elementor-element.elementor-element-3d09bb0 > .elementor-container{min-height:400px;}.elementor-61 .elementor-element.elementor-element-499bead > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-61 .elementor-element.elementor-element-499bead > .elementor-container{min-height:400px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2ce978a *//* About Us Hero Section Styles */
.about-hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  animation: slideInLeft 1s ease 0.3s forwards;
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-section {
    height: 300px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-49f0418 *//* About Main Section Styles */
.about-main-section {
  padding: 5rem 0;
  background-color: white;
}

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

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-tag {
  color: #dc2626;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
  animation: fadeIn 0.8s ease forwards;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInUp 1s ease 0.2s forwards;
  opacity: 0;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-paragraphs p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease 0.4s forwards;
  opacity: 0;
}

.main-paragraphs p:nth-child(2) { animation-delay: 0.6s; }
.main-paragraphs p:nth-child(3) { animation-delay: 0.8s; }

.main-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.btn-primary {
  background-color: #dc2626;
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.btn-secondary {
  background-color: transparent;
  color: #dc2626;
  padding: 12px 32px;
  border: 2px solid #dc2626;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #dc2626;
  color: white;
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.stat-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.stagger-item {
  animation: slideInUp 0.8s ease forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.3s; }
.stagger-item:nth-child(3) { animation-delay: 0.5s; }
.stagger-item:nth-child(4) { animation-delay: 0.7s; }

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fee2e2;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.stat-icon .icon {
  width: 2rem;
  height: 2rem;
  color: #dc2626;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

.stat-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.mission-vision-values {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef2f2, #fde0e0);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }

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

.value-card.dark-bg {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}

.value-card.dark-bg .value-title {
  color: white;
}

.value-card.dark-bg .value-description {
  color: rgba(255,255,255,0.8);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.value-icon .icon {
  width: 2rem;
  height: 2rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.value-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .main-paragraphs p {
    font-size: 1rem;
  }
  
  .main-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-values {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a190c2 *//* Founder Section Styles */
.founder-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.section-header .section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-card {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  animation: slideInUp 1s ease 0.5s forwards;
  opacity: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.founder-message {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-info {
  margin-bottom: 2rem;
}

.founder-name {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.founder-role {
  color: #dc2626;
  font-weight: 600;
  font-size: 1.125rem;
}

.founder-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  margin-bottom: 2rem;
  border-left: 4px solid #dc2626;
  padding-left: 1.5rem;
}

.achievements-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
}

.achievement-item span {
  color: #6b7280;
  font-size: 0.875rem;
}

.founder-image {
  position: relative;
  height: 100%;
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .founder-section {
    padding: 3rem 0;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-message {
    padding: 2rem;
  }
  
  .founder-image {
    height: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-596139a *//* Team Section Styles */
.team-section {
  padding: 5rem 0;
  background-color: white;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.team-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

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

.stagger-item {
  animation: slideInUp 0.8s ease forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.3s; }
.stagger-item:nth-child(3) { animation-delay: 0.5s; }

.team-icon {
  width: 5rem;
  height: 5rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #dc2626;
}

.team-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.team-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-section {
    padding: 3rem 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-57246f3 *//* Timeline Section Styles */
.timeline-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #dc2626;
  z-index: 1;
}

.timeline-items {
  position: relative;
  z-index: 2;
  padding-left: 80px; /* Space for dots */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.timeline-item:nth-child(odd) { animation-delay: 0.1s; }
.timeline-item:nth-child(even) { animation-delay: 0.3s; }

.timeline-dot {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  position: absolute;
  left: -40px; /* Adjust to align with line */
  top: 0;
  box-shadow: 0 0 0 5px #f9fafb;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex: 1;
  transition: all 0.3s ease;
}

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

.timeline-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-section {
    padding: 3rem 0;
  }
  
  .timeline-line {
    left: 18px;
  }
  
  .timeline-items {
    padding-left: 50px;
  }
  
  .timeline-dot {
    left: -10px;
    width: 3rem;
    height: 3rem;
    font-size: 0.8rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-615a34f *//* Contact Section Styles */
.contact-section {
  padding: 5rem 0;
  background-color: #000;
  color: white;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.info-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.contact-form-wrapper {
  background-color: #1a1a1a;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  display: block;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #000;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.2);
}

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

.submit-btn {
  background-color: #dc2626;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220,38,38,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}/* End custom CSS */