.elementor-1237 .elementor-element.elementor-element-85289f5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1237 .elementor-element.elementor-element-283c37d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1237 .elementor-element.elementor-element-0198a8f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1237 .elementor-element.elementor-element-8f398b2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1237 .elementor-element.elementor-element-4e41136{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-1237:not(.elementor-motion-effects-element-type-background), body.elementor-page-1237 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#161224;}/* Start custom CSS for html, class: .elementor-element-664caeb *//* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Hero Section Styles */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0e17 0%, #1a1f3b 100%);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
      font-family: 'Orbitron', sans-serif !important;

}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(149, 90, 232, 0.15) 100%);
    filter: blur(40px);
    z-index: 1;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.floating-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float 10s ease-in-out infinite 2s;
}

.floating-shape.shape-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 15%;
    animation: float 18s ease-in-out infinite 1s;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
}


.neo-badge {
  display: inline-flex;
  position: relative;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(92, 95, 254, 0.3);
  border-radius: 30px;
  padding: 8px 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.neo-badge-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8c8efc;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.neo-badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(92, 95, 254, 0.3), transparent);
  animation: badgeGlow 3s infinite linear;
}

@keyframes badgeGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}


.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #b4b4b4;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #8c8efc 0%, #9f43e8 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(92, 95, 254, 0.6);
  color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color:white;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 550px;
}

.main-visual {
    width: 100%;
    height: 550px !important;
    background: linear-gradient(135deg, rgba(28, 30, 50, 0.8) 0%, rgba(44, 49, 82, 0.8) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-image {
    width: 100%;
    height: 550px !important;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    filter: brightness(1.05) contrast(1.1);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px !important;
    border: 2px solid rgba(108, 99, 255, 0.3);
    border-radius: 20px;
    z-index: 3;
    pointer-events: none;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px !important;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(108, 99, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.2), transparent 40%),
                radial-gradient(circle at bottom left, rgba(74, 144, 226, 0.2), transparent 40%);
    z-index: 4; 
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    width: 160px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation-fill-mode: forwards;
    z-index: 5;
}


.floating-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.floating-card p {
    font-size: 14px;
    color: #b4b4b4;
    margin: 0;
}

.floating-card.card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0.8s;
}

.floating-card.card-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1s;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.zoom-in {
    animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-title { font-size: 42px; }
    .hero-buttons { justify-content: center; }
    .visual-container { height: 350px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .floating-card { width: 140px; padding: 15px; }
}

@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-title { font-size: 32px; }
    .visual-container { height: 300px; }
    .floating-card { width: 120px; padding: 12px; }
    .floating-card h5 { font-size: 14px; }
    .floating-card p { font-size: 12px; }
    .hero-image { transform: perspective(800px) rotateY(-3deg) rotateX(3deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-951426b *//* Heritage Section Styles */
.heritage-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f111a 0%, #1c2035 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.heritage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heritage-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(149, 90, 232, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
}

.heritage-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: heritage-float 20s ease-in-out infinite;
}

.heritage-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: heritage-float 18s ease-in-out infinite reverse;
}

.heritage-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: heritage-float 15s ease-in-out infinite 2s;
}

.heritage-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.heritage-header {
    text-align: center;
    margin-bottom: 80px;
}

.heritage-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c63ff;
    margin-bottom: 20px;
}

.heritage-title  {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.heritage-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #b4b4b4;
}

.heritage-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.heritage-visual {
    flex: 1;
    position: relative;
}

.heritage-story {
    flex: 1;
}

.visual-main {
    position: relative;
    height: 500px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f3b 0%, #2a3154 100%);
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.2) 0%, rgba(74, 144, 226, 0.2) 100%);
}

.floating-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin: 0 20px;
    transform: translateY(50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
 
  font-family: 'Orbitron', sans-serif;
  font-size: 42px !important;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;  margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #b4b4b4;
    margin: 0;
}

.story-item {
    display: flex;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.story-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-year {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8E84F9 0%, #9B51EB 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    position: relative;
}

.story-year::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #6c63ff, transparent);
}

.story-item:last-child .story-year::after {
    display: none;
}

.story-content {
    padding-top: 10px;
}

.story-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.story-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #b4b4b4;
    margin: 0;
}

/* Animations */
@keyframes heritage-float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-20px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(-3deg) scale(0.95);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .heritage-content {
        flex-direction: column;
        gap: 80px;
    }
    
    .heritage-title {
        font-size: 36px;
    }
    
    .visual-main {
        height: auto;
    }
    
    .floating-stats {
        position: relative;
        transform: none;
        margin: 20px 0 0;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 80px 0;
    }
    
    .heritage-header {
        margin-bottom: 60px;
    }
    
    .heritage-title {
        font-size: 32px;
    }
    
    .heritage-intro {
        font-size: 16px;
    }
    
    .story-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .story-year {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .story-year::after {
        display: none;
    }
    
    .stat-item h4 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .heritage-title {
        font-size: 28px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-content h3 {
        font-size: 20px;
    }
    
    .story-content p {
        font-size: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b5943e8 *//* Timeline Section Styles */
.timeline-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0e17 0%, #161a2e 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.timeline-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(149, 90, 232, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
}

.timeline-shape.shape-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: 5%;
    animation: timeline-float 20s ease-in-out infinite;
}

.timeline-shape.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    animation: timeline-float 18s ease-in-out infinite reverse;
}

.timeline-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 80%;
    animation: timeline-float 15s ease-in-out infinite 2s;
}

.timeline-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c63ff;
    margin-bottom: 20px;
}

.timeline-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.timeline-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #b4b4b4;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #6c63ff, #4a90e2);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    padding-right: 50%;
}

.timeline-item.right {
    padding-left: 50%;
}

.timeline-content {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.timeline-year {
    position: absolute;
    top: -20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6c63ff 0%, #4a90e2 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    z-index: 2;
}

.timeline-item.left .timeline-year {
    right: -30px;
}

.timeline-item.right .timeline-year {
    left: -30px;
}

.timeline-icon {
    position: absolute;
    top: -25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 30, 50, 0.9);
    border-radius: 50%;
    border: 2px solid rgba(108, 99, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.timeline-item.left .timeline-icon {
    right: -25px;
}

.timeline-item.right .timeline-icon {
    left: -25px;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.timeline-event {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white !important;
}

.timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #b4b4b4;
    margin: 0;
}

/* Connector dots */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6c63ff 0%, #4a90e2 100%);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

/* Animations */
@keyframes timeline-float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(-3deg) scale(0.95);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-item.left,
    .timeline-item.right {
        padding: 0 0 0 50px;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 15px;
        right: auto;
    }
    
    .timeline-item.left .timeline-year,
    .timeline-item.right .timeline-year {
        left: -30px;
        right: auto;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: -25px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 80px 0;
    }
    
    .timeline-header {
        margin-bottom: 60px;
    }
    
    .timeline-title {
        font-size: 32px;
    }
    
    .timeline-intro {
        font-size: 16px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-event {
        font-size: 20px;
    }
    
    .timeline-desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .timeline-title {
        font-size: 28px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding: 0 0 0 40px;
    }
    
    .timeline-line {
        left: 20px;
        width: 3px;
    }
    
    .timeline-item::after {
        width: 16px;
        height: 16px;
        left: 12px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 16px;
        top: -15px;
    }
    
    .timeline-item.left .timeline-year,
    .timeline-item.right .timeline-year {
        left: -25px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    
    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: -20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16a2db9 *//* Values Section Styles */
.values-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f111a 0%, #1a1f3b 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.values-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(149, 90, 232, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
}

.values-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: values-float 20s ease-in-out infinite;
}

.values-shape.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    animation: values-float 18s ease-in-out infinite reverse;
}

.values-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 80%;
    animation: values-float 15s ease-in-out infinite 2s;
}

.values-shape.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 15%;
    animation: values-float 12s ease-in-out infinite 1s;
}

.values-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}



.values-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.values-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #b4b4b4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.value-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #907BF6 0%, #985CEE 100%);
    border-radius: 18px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white !important;
}

.value-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #b4b4b4;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.value-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    background: linear-gradient(135deg, #8E87FA 0%, #9E4AEA 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.value-card:hover .value-hover-content {
    opacity: 1;
    transform: scale(1);
}

.value-card:hover .value-desc {
    opacity: 0;
}

.value-hover-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-hover-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: white;
}

.value-hover-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.value-hover-content li:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes values-float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(-3deg) scale(0.95);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-header {
        margin-bottom: 60px;
    }
    
    .values-title {
        font-size: 32px;
    }
    
    .values-intro {
        font-size: 16px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .value-title {
        font-size: 20px;
    }
    
    .value-desc {
        font-size: 15px;
    }
    
    .value-hover-content {
        padding: 30px 25px;
    }
    
    .value-hover-content li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .values-title {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-hover-content {
        padding: 25px 20px;
    }
    
    .value-hover-content li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .value-hover-content li::before {
        width: 10px;
        height: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85a9dd1 */.cta-section {
    position: relative;
    padding: 70px 100px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    isolation: isolate;
}

.services-cta {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #8c8efc 30%, #f9f9f9 70%, #8c8efc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto !important;
  animation: gradientShift 4s infinite linear;
}

.cta-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 35px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.cta-button.primary {
  background: linear-gradient(135deg, #8c8efc 0%, #9f43e8 100%);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(106, 17, 203, 0.5);
}

.button-hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    top: 0;
    left: -100%;
    transition: left 0.6s ease;
    z-index: -1;
    border-radius: 50px;
}

.cta-button.secondary .button-hover-effect {
    background: rgba(106, 17, 203, 0.2);
}

.cta-button:hover .button-hover-effect {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 17, 203, 0.4);
}

.cta-button.secondary:hover {
    border-color: #6a11cb;
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.decoration-item {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.decoration-item:nth-child(1) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-item:nth-child(2) {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #00cdac, #02aab0);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.decoration-item:nth-child(3) {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4d94, #ff9a8b);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 60px 50px;
    }
    
    .services-cta {
        padding: 50px 40px;
    }
    
    .cta-content h3 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .cta-button {
        padding: 15px 30px;
    }
    
    .decoration-item:nth-child(1) {
        width: 80px;
        height: 80px;
        left: 5%;
    }
    
    .decoration-item:nth-child(2) {
        width: 120px;
        height: 120px;
        right: 5%;
    }
    
    .decoration-item:nth-child(3) {
        width: 60px;
        height: 60px;
        right: 15%;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 50px 30px;
    }
    
    .services-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
    }
    
    /* Hide decoration items on mobile */
    .decoration-item:nth-child(1),
    .decoration-item:nth-child(2),
    .decoration-item:nth-child(3) {
        display: none;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .services-cta {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}/* End custom CSS */