 :root {
   --primary: #2563eb;
   --secondary: #1d4ed8;
   --accent: #3b82f6;
   --dark: #1e293b;
   --light: #f8fafc;
   --text: #334155;
   --gray: #64748b;
   --success: #10b981;
   --danger: #ef4444;
   --info: #6366f1;
   --warning: #f59e0b;
   --radius: 12px;
   --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Inter', sans-serif;
   background-color: #ffffff;
   color: var(--text);
   line-height: 1.6;
   overflow-x: hidden;
 }

 /* About Company Section */
 .about-company {
   padding: 80px 0;
   background-color: #ffffff;
   position: relative;
   overflow: hidden;
 }

 .container {
   display: flex;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   gap: 60px;
   align-items: center;
 }

 .image-section {
   flex: 1;
   position: relative;
   border-radius: var(--radius);
   overflow: hidden;
   height: 600px;
 }

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

 .image-section img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: var(--radius);
   transform: scale(1);
   transition: var(--transition);
 }

 .image-section:hover img {
   transform: scale(1.03);
 }

 .experience-container {
   position: absolute;
   bottom: 80px;
   left: 40px;
   z-index: 2;
 }

 .connection-line {
   position: absolute;
   bottom: 60px;
   left: 25px;
   width: 2px;
   height: 40px;
   background: linear-gradient(to top, var(--primary), var(--accent));
   animation: lineExtend 1.5s ease-out forwards;
 }

 @keyframes lineExtend {
   0% { height: 0; opacity: 0; }
   100% { height: 40px; opacity: 1; }
 }

 .experience {
   background: rgba(255, 255, 255, 0.95);
   padding: 15px 25px;
   border-radius: 50px;
   box-shadow: var(--shadow);
   color: var(--primary);
   font-size: 1.4rem;
   font-weight: 700;
   backdrop-filter: blur(5px);
   transform: translateY(20px);
   opacity: 0;
   animation: fadeUp 1s ease-out 0.5s forwards;
 }

 @keyframes fadeUp {
   to { transform: translateY(0); opacity: 1; }
 }

 .counter {
   display: inline-block;
   min-width: 20px;
 }

 .text-section {
   flex: 1;
 }

 .section-subtitle {
   color: var(--primary);
   font-size: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 15px;
   display: inline-block;
   position: relative;
   padding-left: 15px;
 }

 .section-subtitle::before {
   content: '';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 8px;
   height: 8px;
   background-color: var(--accent);
   border-radius: 50%;
 }

 .section-title {
   color: var(--dark);
   font-size: 2.5rem;
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 20px;
   background: linear-gradient(to right, var(--dark), var(--primary));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   width: fit-content;
 }

 .section-description {
   color: var(--gray);
   font-size: 1.05rem;
   margin-bottom: 30px;
   line-height: 1.8;
 }

 .services {
   display: flex;
   gap: 20px;
   margin-bottom: 30px;
 }

 .service-card {
   flex: 1;
   background: white;
   padding: 25px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   position: relative;
   overflow: hidden;
   transition: var(--transition);
   z-index: 1;
   border: 1px solid rgba(0, 0, 0, 0.05);
 }

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

 .card-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   color: white;
   font-size: 1.2rem;
 }

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

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

 .wave-hover {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.6s ease;
   z-index: -1;
 }

 .service-card:hover .wave-hover {
   transform: scaleX(1);
 }

 .benefits-list {
   list-style: none;
   margin-top: 20px;
 }

 .benefits-list li {
   margin-bottom: 12px;
   padding-left: 30px;
   position: relative;
   color: var(--dark);
   font-weight: 500;
 }

 .benefits-list li i {
   position: absolute;
   left: 0;
   top: 3px;
   color: var(--success);
   font-size: 1.1rem;
 }

 /* Service Section */
 .service-section {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 100px 8%;
   background-color: #f9fafb;
   position: relative;
   overflow: hidden;
 }

 .service-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMzgsMjQyLDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
   opacity: 0.6;
   z-index: 0;
 }

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

 .subtitle {
   color: var(--primary);
   font-weight: 600;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 15px;
   display: inline-block;
 }

 .title {
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--dark);
   line-height: 1.2;
   margin-bottom: 20px;
 }

 .title .highlight {
   color: var(--primary);
   position: relative;
   display: inline-block;
 }

 .title .highlight::after {
   content: '';
   position: absolute;
   bottom: 5px;
   left: 0;
   width: 100%;
   height: 8px;
   background-color: rgba(59, 130, 246, 0.3);
   z-index: -1;
   border-radius: 4px;
 }

 .description {
   color: var(--gray);
   font-size: 1.05rem;
   margin-bottom: 30px;
   line-height: 1.8;
 }

 .progress-container {
   margin-bottom: 40px;
 }

 .progress-bar {
   margin-bottom: 25px;
 }

 .progress-info {
   display: flex;
   justify-content: space-between;
   margin-bottom: 8px;
   font-weight: 600;
   color: var(--dark);
 }

 .progress-info span:first-child {
   font-size: 0.95rem;
 }

 .percent {
   color: var(--primary);
 }

 .progress-track {
   width: 100%;
   height: 8px;
   background-color: #e2e8f0;
   border-radius: 50px;
   overflow: hidden;
   position: relative;
 }

 .progress-fill {
   height: 100%;
   border-radius: 50px;
   position: relative;
   width: 0;
   transition: width 1.5s ease-out;
 }

 .progress-fill::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(90deg,
     rgba(255,255,255,0.3) 0%,
     rgba(255,255,255,0.8) 50%,
     rgba(255,255,255,0.3) 100%);
   animation: shine 2s infinite;
 }

 @keyframes shine {
   0% { transform: translateX(-100%); }
   100% { transform: translateX(100%); }
 }

 .fill-seo {
   background: linear-gradient(90deg, #2563eb, #3b82f6);
 }

 .fill-social {
   background: linear-gradient(90deg, #ec4899, #f472b6);
 }

 .fill-content {
   background: linear-gradient(90deg, #10b981, #34d399);
 }

 .video-container {
   position: relative;
 }

 .video-btn {
   display: inline-flex;
   align-items: center;
   background-color: var(--primary);
   color: white;
   padding: 12px 25px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: var(--transition);
   cursor: pointer;
   box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
   overflow: hidden;
   position: relative;
 }

 .video-btn:hover {
   background-color: var(--secondary);
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
 }

 .play-icon {
   width: 36px;
   height: 36px;
   background-color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 12px;
   color: var(--primary);
   transition: var(--transition);
 }

 .video-btn:hover .play-icon {
   transform: scale(1.1);
 }

 .video-modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.8);
   z-index: 1000;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease;
 }

 .video-modal.active {
   display: flex;
   opacity: 1;
 }

 .modal-content {
   position: relative;
   width: 80%;
   max-width: 900px;
   height: 0;
   padding-bottom: 56.25%; /* 16:9 aspect ratio */
 }

 .close-modal {
   position: absolute;
   top: -40px;
   right: 0;
   color: white;
   font-size: 2rem;
   cursor: pointer;
   transition: color 0.3s;
 }

 .close-modal:hover {
   color: var(--accent);
 }

 .modal-content iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
 }

 .image-box {
   flex: 1;
   max-width: 500px;
   position: relative;
   z-index: 1;
   margin-left: 40px;
 }

 .feature-img {
   width: 100%;
   border-radius: var(--radius);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   transform: perspective(1000px) rotateY(-5deg);
   transition: var(--transition);
 }

 .image-box:hover .feature-img {
   transform: perspective(1000px) rotateY(0deg);
 }

 .assist-box {
   position: absolute;
   bottom: 30px;
   right: 30px;
   background: linear-gradient(135deg, var(--info), #7c3aed);
   color: white;
   padding: 15px 20px;
   border-radius: var(--radius);
   display: flex;
   align-items: center;
   font-weight: 600;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(86, 11, 173, 0.3);
   z-index: 2;
 }

 .trophy-icon {
   width: 36px;
   height: 36px;
   background-color: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .pulse-effect {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: var(--radius);
   background: linear-gradient(135deg, var(--info), #7c3aed);
   z-index: -1;
   animation: pulse 2s infinite;
   opacity: 0.6;
 }

 @keyframes pulse {
   0% { transform: scale(1); opacity: 0.6; }
   70% { transform: scale(1.1); opacity: 0.2; }
   100% { transform: scale(1); opacity: 0.6; }
 }

 /* Animations */
 [data-aos] {
   transition: opacity 0.6s ease, transform 0.6s ease;
 }

 [data-aos="fade-up"] {
   transform: translateY(30px);
   opacity: 0;
 }

 [data-aos="fade-up"].aos-animate {
   transform: translateY(0);
   opacity: 1;
 }

 [data-aos="fade-right"] {
   transform: translateX(-30px);
   opacity: 0;
 }

 [data-aos="fade-right"].aos-animate {
   transform: translateX(0);
   opacity: 1;
 }

 [data-aos="fade-left"] {
   transform: translateX(30px);
   opacity: 0;
 }

 [data-aos="fade-left"].aos-animate {
   transform: translateX(0);
   opacity: 1;
 }

 [data-aos="zoom-in"] {
   transform: scale(0.9);
   opacity: 0;
 }

 [data-aos="zoom-in"].aos-animate {
   transform: scale(1);
   opacity: 1;
 }
 .about-us .call-icon {
     display: inline-block;
     transform: rotate(0deg) scaleX(1) !important;
     direction: ltr !important;
 }
 /* Responsive Design */
 @media (max-width: 1024px) {
   .container {
     flex-direction: column;
     gap: 40px;
   }

   .image-section {
     width: 100%;
     height: 400px;
   }

   .service-section {
     flex-direction: column;
     padding: 60px 5%;
   }

   .image-box {
     margin-left: 0;
     margin-top: 40px;
     max-width: 100%;
   }

   .title {
     font-size: 2rem;
   }
 }

 @media (max-width: 768px) {
   .services {
     flex-direction: column;
   }

   .section-title {
     font-size: 2rem;
   }

   .assist-box {
     bottom: 15px;
     right: 15px;
     padding: 12px 15px;
     font-size: 0.9rem;
   }
 }
 .video-modal video {
     width: 100%;
     height: auto;
     max-height: 80vh;
     border-radius: var(--radius);
     outline: none;
 }

 /* Responsive video sizing */
 @media (max-width: 768px) {
     .video-modal video {
         max-height: 50vh;
     }
 }

 @media (max-width: 480px) {
   .about-company {
     padding: 60px 0;
   }

   .section-title {
     font-size: 1.8rem;
   }

   .experience {
     font-size: 1.1rem;
     padding: 10px 20px;
   }

   .connection-line {
     left: 20px;
     bottom: 50px;
   }
 }