/* Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

a {
   text-decoration: none;
   color: inherit;
}

:root {
   --primary-color: #131729;
   --accent-color: #f44369;
   --text-light: #ffffff;
   --text-dark: #1e1e1e;
   --transition: all 0.3s ease;
}

body {
   background-color: var(--text-light);
   color: var(--text-dark);
   line-height: 1.6;
   overflow-x: hidden;
}

/* Header Styles */
header {
   background-color: var(--primary-color);
   padding: 1rem 5%;
   color: var(--text-light);
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
   font-weight: 700;
   font-size: 1.2rem;
   transition: var(--transition);
}

.logo:hover {
   transform: scale(1.05);
}

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

nav ul li a {
   color: var(--text-light);
   text-decoration: none;
   font-weight: 500;
   padding: 0.5rem;
   transition: var(--transition);
   position: relative;
}

nav ul li a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background-color: var(--accent-color);
   transition: var(--transition);
}

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

.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
}

.hamburger div {
   width: 25px;
   height: 3px;
   background-color: var(--text-light);
   transition: var(--transition);
}

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

.login-btn {
   background: var(--accent-color);
   color: white;
   border: none;
   padding: 0.75rem 1.5rem;
   border-radius: 25px;
   cursor: pointer;
   font-weight: 600;
   transition: var(--transition);
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.login-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(244, 67, 105, 0.3);
}

/* Container */
.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Section Titles */
.section-title {
   font-size: 2.5rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 1rem;
   color: var(--primary-color);
}

.section-subtitle {
   font-size: 1.1rem;
   text-align: center;
   color: #666;
   margin-bottom: 3rem;
}

/* Modal Styles */
.modal {
   display: none;
   position: fixed;
   z-index: 2000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(5px);
}

.modal-content {
   background-color: white;
   margin: 5% auto;
   padding: 0;
   border-radius: 20px;
   width: 90%;
   max-width: 400px;
   position: relative;
   /*animation: modalSlideIn 0.3s ease;*/
}

/*@keyframes modalSlideIn {*/
/*   from {*/
/*       opacity: 0;*/
/*       transform: translateY(-50px);*/
/*   }*/
/*   to {*/
/*       opacity: 1;*/
/*       transform: translateY(0);*/
/*   }*/
/*}*/

.close-btn {
   position: absolute;
   right: 1rem;
   top: 1rem;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: #666;
   z-index: 10;
}

.modal-body {
   padding: 2rem;
}

/* Auth Forms */
.auth-form {
   display: none;
}

.auth-form.active {
   display: block;
}

.login-header {
   text-align: center;
   margin-bottom: 2rem;
}

.user-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1rem;
}

.user-icon i {
   font-size: 2rem;
   color: white;
}

.login-header h2 {
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
   color: var(--primary-color);
}

.login-header p {
   color: #666;
}

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

.input-with-icon {
   position: relative;
   display: flex;
   align-items: center;
}

.input-with-icon i {
   position: absolute;
   left: 1rem;
   color: #666;
   z-index: 2;
}

.input-with-icon input {
   width: 100%;
   padding: 1rem 1rem 1rem 3rem;
   border: 2px solid #e1e5e9;
   border-radius: 10px;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.input-with-icon input:focus {
   outline: none;
   border-color: #667eea;
   box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.toggle-password {
   position: absolute;
   right: 1rem;
   background: none;
   border: none;
   color: #666;
   cursor: pointer;
   z-index: 2;
}

.form-options {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1.5rem;
}

.remember-me {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   cursor: pointer;
}

.forgot-password {
   color: #667eea;
   text-decoration: none;
}

.login-submit-btn {
   width: 100%;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.login-submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.register-link {
   text-align: center;
   margin-top: 1.5rem;
}

.register-link a {
   color: #667eea;
   text-decoration: none;
   font-weight: 600;
}

/* Stats Hero Section */
.stats-hero {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 5rem 0;
   text-align: center;
}

.stats-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

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

.stat-item {
   background: rgba(255, 255, 255, 0.1);
   padding: 2rem;
   border-radius: 15px;
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
}

.stat-item:hover {
   transform: translateY(-5px);
   background: rgba(255, 255, 255, 0.2);
}

.stat-number {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
}

.stat-label {
   font-size: 1rem;
   opacity: 0.9;
}

/* Enhanced Hero Section */
.hero-content {
   text-align: center;
   margin-bottom: 3rem;
}

.hero-content h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero-subtitle {
   font-size: 1.2rem;
   color: #666;
   margin-bottom: 2rem;
}

.hero-cta {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.cta-primary {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem 2rem;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.cta-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.cta-secondary {
   background: transparent;
   color: #667eea;
   padding: 1rem 2rem;
   border: 2px solid #667eea;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.cta-secondary:hover {
   background: #667eea;
   color: white;
}

/* Trust Indicators Section */
.trust-indicators {
   padding: 4rem 0;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.trust-indicators h2 {
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: var(--primary-color);
}

.trust-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr) ;
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.trust-item {
   text-align: center;
   padding: 2rem;
   background: white;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

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

.trust-item i {
   font-size: 3rem;
   color: #667eea;
   margin-bottom: 1rem;
}

.trust-item h3 {
   font-size: 1.5rem;
   margin-bottom: 0.5rem;
   color: var(--primary-color);
}

.trust-item p {
   color: #666;
}

/* ROI Calculator Widget */
.roi-calculator-widget {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 9999;
}

.roi-calculator {
   background: white;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   width: 350px;
   max-height: 500px;
   overflow: hidden;
   display: none;
   animation: slideIn 0.3s ease;
}

.roi-calculator.active {
   display: block;
}

.calculator-header {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.calculator-header h3 {
   margin: 0;
   font-size: 1.1rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.calculator-toggle {
   background: none;
   border: none;
   color: white;
   font-size: 1.2rem;
   cursor: pointer;
}

.calculator-body {
   padding: 1.5rem;
}

.calculator-inputs label {
   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
   color: var(--primary-color);
}

.input-group {
   display: flex;
   align-items: center;
   border: 2px solid #e1e5e9;
   border-radius: 8px;
   margin-bottom: 1rem;
}

.currency {
   padding: 0.75rem;
   background: #f8f9fa;
   border-right: 2px solid #e1e5e9;
   font-weight: 600;
   color: #666;
}

.input-group input {
   flex: 1;
   border: none;
   padding: 0.75rem;
   font-size: 1rem;
   outline: none;
}

.calculate-btn {
   width: 100%;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
}

.calculate-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.roi-result {
   text-align: center;
   margin-top: 1.5rem;
   padding: 1.5rem;
   background: #f8f9fa;
   border-radius: 10px;
}

.roi-number {
   font-size: 3rem;
   font-weight: 700;
   color: #667eea;
   margin-bottom: 0.5rem;
}

.roi-label {
   font-size: 1.1rem;
   color: #666;
   margin-bottom: 1rem;
}

.roi-breakdown {
   text-align: left;
}

.breakdown-item {
   display: flex;
   justify-content: space-between;
   margin-bottom: 0.5rem;
   font-size: 0.9rem;
}

.breakdown-item span:first-child {
   color: #666;
}

.breakdown-item span:last-child {
   font-weight: 600;
   color: var(--primary-color);
}

.roi-toggle-btn {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   padding: 1rem 1.5rem;
   border-radius: 50px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
   box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
   transition: all 0.3s ease;
}

.roi-toggle-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Tech Stack Section */
.tech-stack {
   padding: 5rem 5%;
   background: white;
}

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

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

.tech-subtitle {
   font-size: 1.1rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.tech-categories {
   display: flex;
   flex-direction: column;
   gap: 3rem;
}

.tech-category {
   background: #f8f9fa;
   padding: 2rem;
   border-radius: 15px;
}

.category-title {
   font-size: 1.5rem;
   color: var(--text-dark);
   margin-bottom: 2rem;
   text-align: center;
}

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

.tech-card {
   background: white;
   padding: 1.5rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   gap: 1rem;
   transition: var(--transition);
}

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

.tech-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.tech-icon i {
   color: white;
   font-size: 1.5rem;
}

.tech-content {
   flex: 1;
}

.tech-content h4 {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.tech-content p {
   color: #666;
   font-size: 0.9rem;
}

.tech-badge {
   background: var(--accent-color);
   color: white;
   padding: 0.25rem 0.75rem;
   border-radius: 15px;
   font-size: 0.8rem;
   font-weight: 600;
}

/* Clients Section Styles */
.clients {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   position: relative;
}

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

.clients .section-title {
   font-size: clamp(2rem, 4vw, 2.5rem);
   color: var(--text-dark);
   margin-bottom: 1rem;
   position: relative;
}

.clients .section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 2px;
}

.clients .section-subtitle {
   font-size: 1.1rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.clients-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.client-card {
   background: white;
   padding: 2rem;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   text-align: center;
   transition: var(--transition);
   border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.client-card .client-logo {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   border-radius: 50%;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #f8f9fa;
   border: 2px solid #e9ecef;
}

.client-card .client-logo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.client-card h3 {
   font-size: 1.3rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.client-card p {
   color: #666;
   margin-bottom: 1.5rem;
}

.client-stats {
   display: flex;
   justify-content: center;
   gap: 1rem;
   flex-wrap: wrap;
}

.client-stats .stat {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   padding: 0.5rem 1rem;
   border-radius: 20px;
   font-size: 0.9rem;
   font-weight: 500;
}

/* Videos Section Styles */
.videos {
   padding: 5rem 5%;
   background: white;
}

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

@media (max-width: 480px) {
   .videos .section-header {
      margin-bottom: 1rem;
   }
}

.videos .section-title {
   font-size: clamp(2rem, 4vw, 2.5rem);
   color: var(--text-dark);
   margin-bottom: 1rem;
   position: relative;
}

.videos .section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 2px;
}

.videos .section-subtitle {
   font-size: 1.1rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.videos-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto 3rem;
}

.video-card {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: var(--transition);
   border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.video-thumbnail {
   position: relative;
   height: 200px;
   overflow: hidden;
}

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

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 60px;
   height: 60px;
   background: rgba(244, 67, 105, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: var(--transition);
}

.play-button:hover {
   background: var(--accent-color);
   transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
   color: white;
   font-size: 1.5rem;
   margin-left: 3px;
}

.video-content {
   padding: 1.5rem;
}

.video-content h3 {
   font-size: 1.2rem;
   color: var(--text-dark);
   margin-bottom: 0.8rem;
}

.video-content p {
   color: #666;
   margin-bottom: 1rem;
   line-height: 1.6;
}

.video-meta {
   display: flex;
   gap: 1rem;
   color: #888;
   font-size: 0.9rem;
}

.video-meta span {
   display: flex;
   align-items: center;
   gap: 0.3rem;
}

.videos-cta {
   text-align: center;
}

/* Contact Section Styles */
.contact {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.contact .section-title {
   font-size: clamp(2rem, 4vw, 2.5rem);
   color: var(--text-dark);
   margin-bottom: 1rem;
   position: relative;
}

.contact .section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 2px;
}

.contact .section-subtitle {
   font-size: 1.1rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   max-width: 1200px;
   margin: 0 auto;
}

.contact-info {
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 2rem;
}

.contact-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   padding: 2rem;
   background: white;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: var(--transition);
}

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

.contact-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.contact-icon i {
   color: white;
   font-size: 1.5rem;
}

.contact-details h3 {
   font-size: 1.2rem;
   color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.contact-details p {
   font-size: 1.1rem;
   color: var(--text-dark);
   margin-bottom: 0.3rem;
}

.contact-details span {
   color: #666;
   font-size: 0.9rem;
}

.contact-form {
   background: white;
   padding: 1.5rem;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
   font-size: 1.3rem;
   color: var(--text-dark);
   margin-bottom: 1.5rem;
   text-align: center;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0.8rem;
   margin-bottom: 0.8rem;
}

.form-group {
   margin-bottom: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 0.8rem 1.2rem;
   border: 2px solid #e9ecef;
   border-radius: 10px;
   background: white;
   color: var(--text-dark);
   font-size: 0.9rem;
   transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--accent-color);
   box-shadow: 0 0 0 4px rgba(244, 67, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: #999;
}

.form-group textarea {
   resize: vertical;
   min-height: 100px;
}

/* Footer Styles */
.footer {
   background: var(--primary-color);
   color: var(--text-light);
   padding: 4rem 5% 2rem;
}

.footer-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
   max-width: 1200px;
   margin: 0 auto;
}

.footer-section h4 {
   font-size: 1.3rem;
   margin-bottom: 1.5rem;
   position: relative;
}

.footer-section h4::after {
   content: '';
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 40px;
   height: 3px;
   background: var(--accent-color);
   border-radius: 2px;
}

.footer-logo h3 {
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
}

.footer-logo p {
   color: #ccc;
   margin-bottom: 1.5rem;
}

.social-links {
   display: flex;
   gap: 1rem;
}

.social-links a {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}

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

.social-links i {
   font-size: 1.2rem;
}

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

.footer-section ul li {
   margin-bottom: 0.8rem;
}

.footer-section ul li a {
   color: #ccc;
   transition: var(--transition);
}

.footer-section ul li a:hover {
   color: var(--accent-color);
}

.footer-section ul li i {
   margin-right: 0.5rem;
   color: var(--accent-color);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   margin-top: 3rem;
   padding-top: 2rem;
}

.footer-bottom-content {
   display: flex;
   justify-content: space-between;
   /*align-items: center;*/
   max-width: 1200px;
   margin: 0 auto;
}

.footer-bottom p {
   color: #ccc;
}

.footer-links {
   display: flex;
   gap: 2rem;
}

.footer-links a {
   color: #ccc;
   transition: var(--transition);
}

.footer-links a:hover {
   color: var(--accent-color);
}

/* Case Studies Section */
.case-studies {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   position: relative;
}

.case-studies .section-header {
   text-align: center;
   margin-bottom: 3rem;
}

.case-studies .section-title {
   font-size: 2.5rem;
   margin-bottom: 1rem;
   color: white;
}

.case-studies .section-subtitle {
   font-size: 1.1rem;
   opacity: 0.9;
}

/* .case-studies-slider {
   position: relative;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 4rem;
   /* width: 80%; */ 

 */

.case-study-slider {
    position: relative;
    padding: 0;
    width: 80%;
    margin: auto;
}

.case-study-slider .swiper-slide img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-studies-swiper {
   padding: 2rem 0;
   overflow: visible;
}

.case-study-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border-radius: 20px;
   padding: 1.5rem;
   display: block;
   max-width: 1200px;
   margin: 0 auto;
   transition: all 0.3s ease;
}

.case-study-card:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
}

.case-study-header {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-header .client-logo {
   width: 80px;
   height: 80px;
   background: white;
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0.5rem;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-study-header .client-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.case-study-title h3 {
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
   color: white;
}

.industry-tag {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   padding: 0.25rem 0.75rem;
   border-radius: 15px;
   font-size: 0.8rem;
   font-weight: 600;
   backdrop-filter: blur(5px);
}

.case-study-metrics {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
   margin-bottom: 2rem;
   /* Let left content flow around the metrics on desktop */
   float: right;
   width: 42%;
   min-width: 320px;
   margin-left: 2rem;
}

.metric {
   text-align: center;
   padding: 0.5rem;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 15px;
   backdrop-filter: blur(5px);
   transition: all 0.3s ease;
}

.metric:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: scale(1.05);
}

.metric.highlight {
   background: rgba(255, 255, 255, 0.2);
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.metric .number {
   display: block;
   font-size: 1.2rem;
   font-weight: 650;
   /* margin-bottom: 0.5rem; */
   color: white;
}

.metric .label {
   font-size: 0.8rem;
   opacity: 0.8;
   color: white;
}

.case-study-details p {
   font-size: 1.1rem;
   line-height: 1.6;
   margin-bottom: 2rem;
   opacity: 0.9;
}

.project-highlights {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   margin-bottom: 2rem;
}

.highlight-tag {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   padding: 0.5rem 1rem;
   border-radius: 25px;
   font-size: 0.9rem;
   backdrop-filter: blur(5px);
   transition: all 0.3s ease;
}

.highlight-tag:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-2px);
}

.case-study-cta .cta-button {
   background: white;
   color: #667eea;
   padding: 1rem 2rem;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
}

/* Ensure CTA starts below floated metrics */
.case-study-cta {
   clear: both;
}

.case-study-cta .cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.case-studies-next,
.case-studies-prev {
   color: white !important;
   background: rgba(255, 255, 255, 0.2);
   width: 50px !important;
   height: 50px !important;
   border-radius: 50%;
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
   position: absolute !important;
   top: 50% !important;
   transform: translateY(-50%) !important;
   z-index: 10;
}

.case-studies-next {
   right: -60px !important;
}

.case-studies-prev {
   left: -60px !important;
}

.case-studies-next:hover,
.case-studies-prev:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-50%) scale(1.1) !important;
}

.case-studies-next::after,
.case-studies-prev::after {
   font-size: 1.2rem !important;
   font-weight: bold;
}

.case-studies-pagination {
   position: relative !important;
   margin-top: 2rem;
   bottom: auto !important;
}

.case-studies-pagination .swiper-pagination-bullet {
   background: rgba(255, 255, 255, 0.3);
   opacity: 1;
   width: 12px;
   height: 12px;
   transition: all 0.3s ease;
}

.case-studies-pagination .swiper-pagination-bullet-active {
   background: white;
   transform: scale(1.2);
}

.case-study-dots {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-top: 3rem;
   flex-wrap: wrap;
}

.dot {
   background: rgba(255, 255, 255, 0.1);
   border-radius: 15px;
   padding: 1rem 1.5rem;
   cursor: pointer;
   transition: all 0.3s ease;
   backdrop-filter: blur(5px);
   border: 2px solid transparent;
   text-align: center;
   min-width: 120px;
}

.dot:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: translateY(-2px);
}

.dot.active {
   background: rgba(255, 255, 255, 0.3);
   border-color: rgba(255, 255, 255, 0.5);
}

.dot-title {
   display: block;
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 0.25rem;
}

.dot-subtitle {
   display: block;
   font-size: 0.8rem;
   opacity: 0.8;
}

/* About Section */
.about {
   padding: 5rem 5%;
   background: white;
}

.about-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   max-width: 1200px;
   margin: 0 auto;
   align-items: center;
}

.about-text h2 {
   font-size: 2.5rem;
   color: var(--text-dark);
   margin-bottom: 1rem;
}

.about-text h4 {
   font-size: 1.3rem;
   color: var(--accent-color);
   margin-bottom: 2rem;
}

.about-description p {
   font-size: 1.1rem;
   line-height: 1.8;
   color: #666;
   margin-bottom: 1.5rem;
}

.about-features {
   display: flex;
   gap: 2rem;
   margin-top: 2rem;
}

.feature {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   color: var(--accent-color);
   font-weight: 600;
}

.about-image {
   position: relative;
   text-align: center;
}

.about-image img {
   width: 100%;
   max-width: 400px;
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
   position: absolute;
   top: -20px;
   right: -20px;
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   padding: 1rem;
   border-radius: 50%;
   width: auto;
   height: 85px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   box-shadow: 0 10px 20px rgba(244, 67, 105, 0.3);
}

.experience-badge .years {
   font-size: 1.5rem;
   font-weight: 700;
}

.experience-badge .text {
   font-size: 0.7rem;
   text-align: center;
   line-height: 1.2;
}

/* Services Section */
.services {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.service-card {
   background: white;
   border-radius: 20px;
   padding: 2.5rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   border: 1px solid #f0f0f0;
   text-align: center;
}

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

.service-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
}

.service-icon i {
   font-size: 2rem;
   color: white;
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.service-card p {
   color: #666;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.service-features {
   list-style: none;
   margin-bottom: 2rem;
   text-align: left;
}

.service-features li {
   padding: 0.5rem 0;
   color: #666;
   position: relative;
   padding-left: 1.5rem;
}

.service-features li::before {
   content: '✓';
   position: absolute;
   left: 0;
   color: var(--accent-color);
   font-weight: bold;
}

.service-cta {
   text-align: center;
}

.service-btn {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   padding: 0.75rem 1.5rem;
   border-radius: 25px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.service-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(244, 67, 105, 0.3);
}

/* Success Stories Section */
.success-stories {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.stories-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.story-card {
   background: white;
   border-radius: 20px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

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

.story-header {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1.5rem;
}

.story-header .client-logo {
   width: 60px;
   height: 60px;
   object-fit: contain;
   border-radius: 10px;
}

.story-header .industry {
   background: var(--accent-color);
   color: white;
   padding: 0.25rem 0.75rem;
   border-radius: 15px;
   font-size: 0.8rem;
   font-weight: 600;
}

.story-metrics {
   display: flex;
   gap: 2rem;
   margin-bottom: 1.5rem;
}

.story-metrics .metric {
   text-align: center;
}

.story-metrics .number {
   display: block;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--accent-color);
}

.story-metrics .label {
   font-size: 0.9rem;
   color: #666;
}

.story-card p {
   color: #666;
   font-style: italic;
   line-height: 1.6;
}

/* Lead Capture Section */
.lead-capture-section {
   padding: 3rem 5%;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.lead-capture-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
}

.lead-capture-text h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.lead-capture-text p {
   font-size: 1.1rem;
   color: #666;
   margin-bottom: 2rem;
}

.lead-benefits {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.benefit-item {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.benefit-item i {
   color: var(--accent-color);
   font-size: 1.2rem;
}

.lead-capture-form {
   background: white;
   padding: 2.5rem;
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lead-capture-form h3 {
   text-align: center;
   margin-bottom: 2rem;
   color: var(--text-dark);
}

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

.modern-form input {
   width: 100%;
   padding: 1rem;
   border: 2px solid #e1e5e9;
   border-radius: 10px;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.modern-form input:focus {
   outline: none;
   border-color: var(--accent-color);
   box-shadow: 0 0 0 3px rgba(244, 67, 105, 0.1);
}

.modern-form .cta-button {
   width: 100%;
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
}

.modern-form .cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(244, 67, 105, 0.3);
}

/* Chatbot Widget */

.chatbot-button {
   background-color: var(--accent-color);
   color: var(--text-light);
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 4px 15px rgba(244, 67, 105, 0.3);
   transition: var(--transition);
   position: relative;
}

.chatbot-button:hover {
   transform: scale(1.1);
   box-shadow: 0 6px 20px rgba(244, 67, 105, 0.4);
}

.chatbot-button i {
   font-size: 24px;
}

.notification-badge {
   position: absolute;
   top: -5px;
   right: -5px;
   background: #f44369;
   color: white;
   border-radius: 50%;
   width: 20px;
   height: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.7rem;
   font-weight: bold;
}

.chatbot-container {
   position: absolute;
   bottom: 80px;
   right: 0;
   width: 350px;
   height: 500px;
   background: white;
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
   display: none;
   flex-direction: column;
   overflow: hidden;
}

.chatbot-container.active {
   display: flex;
}

.chatbot-header {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   padding: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chatbot-header h3 {
   margin: 0;
   font-size: 1.1rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.chatbot-close {
   background: none;
   border: none;
   color: white;
   font-size: 1.2rem;
   cursor: pointer;
}

.chatbot-messages {
   flex: 1;
   padding: 1rem;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.message {
   padding: 0.75rem 1rem;
   border-radius: 15px;
   max-width: 80%;
   word-wrap: break-word;
}

.bot-message {
   background: #f8f9fa;
   color: #333;
   align-self: flex-start;
}

.user-message {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   align-self: flex-end;
}

.chatbot-input {
   padding: 1rem;
   border-top: 1px solid #e1e5e9;
   display: flex;
   gap: 0.5rem;
}

.chatbot-input input {
   flex: 1;
   padding: 0.75rem;
   border: 2px solid #e1e5e9;
   border-radius: 25px;
   outline: none;
   transition: all 0.3s ease;
}

.chatbot-input input:focus {
   border-color: var(--accent-color);
}

.chatbot-input button {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   border: none;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.chatbot-input button:hover {
   transform: scale(1.1);
}

/* Exit Intent Popup */
.exit-popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 2000;
}

.exit-popup.active {
   display: flex;
}

.exit-popup-content {
   background: white;
   border-radius: 20px;
   padding: 3rem;
   max-width: 500px;
   text-align: center;
   position: relative;
   animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
   from {
       opacity: 0;
       transform: scale(0.8);
   }
   to {
       opacity: 1;
       transform: scale(1);
   }
}

.exit-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: #666;
}

.exit-content h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.exit-content p {
   color: #666;
   margin-bottom: 2rem;
   font-size: 1.1rem;
}

.exit-form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 1rem;
}

.exit-form input {
   padding: 1rem;
   border: 2px solid #e1e5e9;
   border-radius: 10px;
   font-size: 1rem;
}

.exit-form button {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.exit-form button:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(244, 67, 105, 0.3);
}

.exit-note {
   font-size: 0.9rem;
   color: #999;
}

/* Animations */
@keyframes slideIn {
   from {
       opacity: 0;
       transform: translateY(20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .clients-grid,
   .videos-grid {
      grid-template-columns: 1fr;
   }
   
   .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .form-row {
      grid-template-columns: 1fr;
   }
   
   .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
   }
   
   .footer-links {
      justify-content: center;
   }
   
   .about-container {
      grid-template-columns: 1fr;
      text-align: center;
   }
   
   .lead-capture-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .case-study-card {
      padding: 2rem;
   }
   
   .case-study-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
   }
   
   .case-study-metrics {
      grid-template-columns: 1fr;
      gap: 1rem;
      float: none;
      width: 100%;
      min-width: 0;
      margin: 0 0 1rem 0;
   }
   
   .services-grid {
      grid-template-columns: 1fr;
   }
   
   .stories-grid {
      grid-template-columns: 1fr;
   }
   
   .case-studies-next,
   .case-studies-prev {
      display: none !important;
   }
   
   .case-studies-slider {
      padding: 0 1rem;
   }
}

@media (max-width: 480px) {
   .clients,
   .videos,
   .contact {
      padding: 3rem 5%;
   }
   
   .client-card,
   .video-card,
   .contact-form {
      padding: 1.5rem;
   }
   
   .contact-item {
      flex-direction: column;
      text-align: center;
   }
   
   .about-features {
      flex-direction: column;
      gap: 1rem;
   }
   
   .case-study-dots {
      flex-direction: column;
      align-items: center;
   }
   
   .dot {
      width: 100%;
      max-width: 200px;
   }
   
   .exit-popup-content {
      margin: 1rem;
      padding: 2rem;
   }
   
   .chatbot-container {
      width: 300px;
   }
}

/* E-book Modal Styles */
.ebook-form {
    padding: 20px;
    text-align: center;
}

.ebook-form .form-header {
    margin-bottom: 25px;
}

.ebook-form .form-header h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.ebook-form .form-header p {
    color: #666;
    font-size: 16px;
}

.download-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    /* transition: background 0.3s; */
}

.download-btn:hover {
    background: #ff3333;
}

.exit-popup.active {
   display: flex;
}

.exit-popup-content {
   background: white;
   border-radius: 20px;
   padding: 3rem;
   max-width: 500px;
   text-align: center;
   position: relative;
   animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
   from {
       opacity: 0;
       transform: scale(0.8);
   }
   to {
       opacity: 1;
       transform: scale(1);
   }
}

.exit-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: #666;
}

.exit-content h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
   color: var(--text-dark);
}

.exit-content p {
   color: #666;
   margin-bottom: 2rem;
   font-size: 1.1rem;
}

.exit-form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 1rem;
}

.exit-form input {
   padding: 1rem;
   border: 2px solid #e1e5e9;
   border-radius: 10px;
   font-size: 1rem;
}

.exit-form button {
   background: linear-gradient(135deg, var(--accent-color) 0%, #ff8da9 100%);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.exit-form button:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(244, 67, 105, 0.3);
}

.exit-note {
   font-size: 0.9rem;
   color: #999;
}

/* Animations */
@keyframes slideIn {
   from {
       opacity: 0;
       transform: translateY(20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .clients-grid,
   .videos-grid {
      grid-template-columns: 1fr;
   }
   
   .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .form-row {
      grid-template-columns: 1fr;
   }
   
   .footer-content {
      grid-template-columns: 1fr;
      text-align: left;
   }
   
   .footer-bottom-content {
      flex-direction: column;
      gap: 0.5rem;
      text-align: left;
   }
   
   .footer-links {
      justify-content: center;
   }
   
   .about-container {
      grid-template-columns: 1fr;
      text-align: center;
   }
   
   .lead-capture-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .case-study-card {
      padding: 2rem;
   }
   
   .case-study-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
   }
   
   .case-study-metrics {
      grid-template-columns: 1fr;
      gap: 1rem;
      float: none;
      width: 100%;
      min-width: 0;
      margin: 0 0 1rem 0;
   }
   
   .services-grid {
      grid-template-columns: 1fr;
   }
   
   .stories-grid {
      grid-template-columns: 1fr;
   }
   
   .case-studies-next,
   .case-studies-prev {
      display: none !important;
   }
   
   .case-studies-slider {
      padding: 0 1rem;
   }
}

@media (max-width: 480px) {
   .clients,
   .videos,
   .contact {
      padding: 3rem 5%;
   }
   
   .client-card,
   .video-card,
   .contact-form {
      padding: 1.5rem;
   }
   
   .contact-item {
      flex-direction: column;
      text-align: center;
   }
   
   .about-features {
      flex-direction: column;
      gap: 1rem;
   }
   
   .case-study-dots {
      flex-direction: column;
      align-items: center;
   }
   
   .dot {
      width: 100%;
      max-width: 200px;
   }
   
   .exit-popup-content {
      margin: 1rem;
      padding: 2rem;
   }
   
   .chatbot-container {
      width: 300px;
   }
}

/* image case study slider */

.slider-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px auto 40px auto;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.image-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 75vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    margin: 0 auto;
}

.nav-btn {
    background: #e9615e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: white;
    z-index: 10;
    position: absolute;
}

.prev-btn {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: black;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* .slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: #bbb;
}

.dot.active:hover {
    background: #0056b3;
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    /*body {*/
    /*    padding: 10px;*/
    /*}*/
    
    .slider-container {
        margin: 40px auto 20px auto;
    }
    
    .slider-wrapper {
        gap: 10px;
    }
    
    .image-slider {
        height: 400px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        margin-top: 15px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        margin: 30px auto 15px auto;
    }
    
    .image-slider {
        height: 300px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide.active .slide-image {
    animation: fadeIn 0.5s ease-out;
}

/* Loading state */
.slide-image {
    background-color: #f0f0f0;
    transition: opacity 0.3s ease;
}

.slide-image:not([src]) {
    opacity: 0;
}

/* Hover effect on images */
.slide-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}