/* Ensure pricing calculator buttons and links are visually identical */
.pricing-calculator-form .btn,
.pricing-calculator-form .btn-primary,
.pricing-calculator-form a.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  border-radius: 25px;
  font-size: 1.15rem;
  padding: 1rem 0;
  margin-bottom: 0.2rem;
  box-shadow: 0 4px 24px rgba(99,102,241,0.13), 0 2px 8px rgba(0,0,0,0.06);
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #fff;
  border: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s;
}
.pricing-calculator-form .btn-primary:last-child,
.pricing-calculator-form a.btn-primary:last-child {
  margin-bottom: 0 !important;
}
.pricing-calculator-form .btn-primary:hover,
.pricing-calculator-form a.btn-primary:hover {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  transform: translateY(-2px) scale(1.03);
}
.pricing-calculator-form .btn-primary:last-child,
.pricing-calculator-form a.btn-primary:last-child {
  margin-bottom: 0;
}
/* Submit Form Title Styles */
.submit-form-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-top: 0px; /* HEADER MARGIN EDIT ME */
  background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(99,102,241,0.10);
  border-radius: 12px;
  position: sticky;
  top: 0;
  z-index: 1002;
  background-color: #fff;
}
#submit-manuscript .google-form-wrapper {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

#submit-manuscript .google-form-wrapper iframe {
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block;
    margin: 0;
    padding: 70px 0 50px 0 !important; /* Adjust padding to ensure the form is centered */
    
}
#submit-manuscript {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin-top: 0px; /* Adjust this value to match your navbar height */
}

#submit-manuscript > .container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#submit-manuscript .submit-form-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
/* Contact Form Styles */
.contact-us-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6B46C1 100%);
    position: relative;
    overflow: hidden;
}

.contact-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}


/* Removed dot SVG overlay from contact-us-section */

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-us-section h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    position: relative;
}

.contact-us-section h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;

}

.contact-us-section form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-us-section form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s;
}



.contact-us-section .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-us-section .form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(158, 158, 158, 0.2);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #374151;
    position: relative;
    z-index: 1;
}

.contact-us-section .form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.contact-us-section .form-control:focus {
    border-color: #505050;
    outline: none;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-us-section .form-control:hover:not(:focus) {
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.1);
}

.contact-us-section textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.contact-us-section .btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #A855F7 0%, #7C3AED 50%, #6366F1 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;

}

.contact-us-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}





.contact-us-section .btn:active {
    transform: translateY(-1px);
}

/* Form Animation */
.contact-us-section .form-group {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.contact-us-section .form-group:nth-child(1) { animation-delay: 0.1s; }
.contact-us-section .form-group:nth-child(2) { animation-delay: 0.2s; }
.contact-us-section .form-group:nth-child(3) { animation-delay: 0.3s; }
.contact-us-section .form-group:nth-child(4) { animation-delay: 0.4s; }
.contact-us-section .form-group:nth-child(5) { animation-delay: 0.5s; }
.contact-us-section .btn { 
    opacity: 0;
    animation: slideInUp 0.6s ease 0.6s forwards; 
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-section h1 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .contact-us-section form {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .contact-us-section .form-control {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .contact-us-section .btn {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .contact-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .contact-us-section {
        padding: 60px 0;
    }
    
    .contact-us-section h1 {
        font-size: 2rem;
    }
    
    .contact-us-section form {
        padding: 30px 20px;
    }
}

/* Footer Contact Form Styles */
#footerContactFormContainer {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 2rem 2rem 1.5rem 2rem;
  max-width: 420px;
  margin: 1.5rem auto 0 auto;
  transition: box-shadow 0.2s;
}
#footerContactFormContainer:focus-within {
  box-shadow: 0 8px 32px rgba(99,102,241,0.13), 0 2px 8px rgba(0,0,0,0.06);
}
#footerContactForm {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
#footerContactForm input,
#footerContactForm textarea {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
#footerContactForm input:focus,
#footerContactForm textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px #6366f133;
}
#footerContactForm button {
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
#footerContactForm button:hover {
  background: linear-gradient(90deg, #818cf8 0%, #6366f1 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(99,102,241,0.13);
}
#footerFormStatus {
  margin-top: 0.5rem;
  color: #6366f1;
  font-size: 1rem;
  min-height: 1.2em;
  text-align: center;
}
@media (max-width: 600px) {
    .pricing-offer {
        padding: 1.2rem 0.7rem;
        justify-content: center;
        min-height: 220px;
    }
  #footerContactForm textarea {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
  #footerContactForm button {
    font-size: 1rem;
    padding: 0.8rem 0;
  }
}
/* Presentable style for Submit Manuscript intro */
#submitIntro {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(99,102,241,0.07);
    padding: 48px 32px 40px 32px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 420px;
    height: auto;
    box-sizing: border-box;
}

#submitIntro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    line-height: 1.3;
}

#submitIntro h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 28px;
    line-height: 1.4;
}

#submitIntro p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

#submitIntro .btn {
    font-size: 1.1rem;
    padding: 16px 38px;
    border-radius: 24px;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
  #submitIntro {
    max-width: 95vw;
    padding: 40px 24px 36px 24px;
    min-height: 380px;
    margin: 0 auto;
  }
  
  #submitIntro h2 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  
  #submitIntro h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #submitIntro {
    max-width: 95vw !important;
    padding: 24px 16px 20px 16px !important;
    min-height: 280px !important;
    border-radius: 12px !important;
    margin: 0 12px !important;
  }
  
  #submitIntro h2 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }
  
  #submitIntro h3 {
    font-size: 0.95rem !important;
    margin-bottom: 14px !important;
  }
  
  #submitIntro p {
    font-size: 0.85rem !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }
  
  #submitIntro .btn {
    font-size: 0.9rem !important;
    padding: 11px 24px !important;
    margin-top: 12px !important;
    width: 100% !important;
    max-width: 250px !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  #submitIntro {
    max-width: 98vw !important;
    padding: 18px 12px 16px 12px !important;
    min-height: 220px !important;
    border-radius: 10px !important;
    margin: 0 8px !important;
  }
  
  #submitIntro h2 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }
  
  #submitIntro h3 {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
  }
  
  #submitIntro p {
    font-size: 0.75rem !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
  }
  
  #submitIntro .btn {
    font-size: 0.8rem !important;
    padding: 9px 20px !important;
    margin-top: 8px !important;
    width: 100% !important;
    max-width: 220px !important;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  #submitIntro {
    max-width: 100vw !important;
    padding: 14px 8px 12px 8px !important;
    min-height: 180px !important;
    border-radius: 8px !important;
    margin: 0 4px !important;
  }
  
  #submitIntro h2 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
    line-height: 1.1 !important;
  }
  
  #submitIntro h3 {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
  }
  
  #submitIntro p {
    font-size: 0.7rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }
  
  #submitIntro .btn {
    font-size: 0.75rem !important;
    padding: 8px 16px !important;
    margin-top: 6px !important;
    width: 100% !important;
    max-width: 200px !important;
  }
}

#submitIntro.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
}

/* Legacy support for submit-intro-container class */
.submit-intro-container {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-intro-container.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
}

.submit-intro-container.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
}
#submitIntro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#submitIntro h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 28px;
}
#submitIntro .btn {
    font-size: 1.1rem;
    padding: 16px 38px;
    border-radius: 24px;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}
/* Make each main section full viewport width and height */
section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Mobile section adjustments */
@media (max-width: 768px) {
  section {
    min-height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 15px 0;
  }
}

/* Footer Styles */
.footer {
    width: 100vw;
    min-height: auto;
    background-color: #1a1a1a;    
    padding: 4rem 0 2rem;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    
}

.footer-section {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-img {
    width: 40px;
    height: auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
}

.footer-description {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;    
    width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    margin: 0;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

section > .container, .footer > .container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  
}

@media (max-width: 900px) {
  section > .container, .footer > .container {
    padding: 40px 8px;
  }
}
/* Authors Image Grid (4 custom rows) */
.authors-image-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin: 0px 0 10px 0;
  
}

/* --- Mobile improvements for 'Worked with Authors From' section --- */
@media (max-width: 600px) {
  .authors {
    padding: 32px 0 18px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  .authors h2 {
    font-size: 1.4rem !important;
    text-align: center;
    margin-bottom: 18px !important;
    line-height: 1.2;
    padding: 0 8px;
    background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
  }
  .authors-image-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 8px;
    justify-content: center;
    align-items: center;
    margin: 0 0 10px 0;
    padding: 0 4px;
  }
  .authors-row {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .author-img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    margin: 0 !important;
    
    padding: 2px;
  }
  .author-img img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
}

.authors-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  
}

.author-img {
  width: 140px; /* Increased from 110px */
  height: 140px; /* Increased from 110px */
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 80px;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.author-img:hover {
  transform: scale(1.5);
}

.author-img img {
  max-width: 100%; /* Ensure logos fit within their container */
  max-height: 100%; /* Ensure logos fit within their container */
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: scale-down; /* Prevent logos from being cropped */
  border-radius: 8px;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.authors-row .author-img-placeholder {
  width: 110px;
  height: 110px;
  background: #e5e7eb;
  border-radius: 16px;
  border: 2.5px dashed #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a5b4fc;
  box-shadow: 0 2px 10px rgba(99,102,241,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.authors-row .author-img-placeholder::after {
  content: "Image";
  color: #a5b4fc;
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1200px) {
  .authors-row .author-img-placeholder,
  .author-img {
    width: 120px; /* Increased from 80px */
    height: 120px; /* Increased from 80px */
  }
  .authors-row {
    gap: 10px;
  }
  .author-img img {
    max-width: 110px; /* Increased from 70px */
    max-height: 110px; /* Increased from 70px */
    padding: 0;
  }
}
@media (max-width: 700px) {
  .authors-image-grid {
    gap: 12px;
  }
  .authors-row {
    gap: 8px;
  }
  .authors-row .author-img-placeholder,
  .author-img {
    width: 50px; /* Increased from 38px */
    height: 50px; /* Increased from 38px */
  }
  .author-img img {
    max-width: 40px; /* Increased from 30px */
    max-height: 40px; /* Increased from 30px */
    padding: 0;
  }
}

.author-img-placeholder {
  width: 100%;
  height: 220px;
  background: #e5e7eb;
  border-radius: 16px;
  border: 2.5px dashed #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a5b4fc;
  box-shadow: 0 2px 10px rgba(99,102,241,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
  flex: 0 0 100%;
  position: relative;
  scroll-snap-align: start;
}
.author-img-placeholder::after {
  content: "Image";
  color: #a5b4fc;
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Marquee Logo Wall Styles */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  gap: 40px;
  align-items: center;
}

.marquee-left .marquee-content {
  animation-name: marquee-left;
}

.marquee-right .marquee-content {
  animation-name: marquee-right;
}

.author-logo {
  flex-shrink: 0;
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.8;
}

.author-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
  opacity: 1;
}

.author-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.author-logo:hover img {
  filter: grayscale(0);
}

/* Marquee Animations */
@keyframes marquee-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .author-logo {
    width: 100px;
    height: 70px;
    padding: 12px;
  }
  
  .marquee-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .author-logo {
    width: 80px;
    height: 60px;
    padding: 10px;
  }
  
  .marquee-content {
    gap: 20px;
    animation-duration: 25s;
  }
  
  .marquee-row {
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  .author-logo {
    width: 70px;
    height: 50px;
    padding: 8px;
  }
  
  .marquee-content {
    gap: 15px;
    animation-duration: 20s;
  }
}

/* Improved Our Top Services Section */
.improved-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 350px));
    gap: 2rem;
    margin: 3rem auto;
    padding: 0 1rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.improved-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(99,102,241,0.08);
    padding: 2rem;
    border: 1.5px solid #ececff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-content: center;
}

.improved-card:hover {
    box-shadow: 0 16px 48px rgba(99,102,241,0.15);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.improved-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99,102,241,0.12);
    transition: transform 0.3s ease;
}

.icon-bg1 { background: linear-gradient(135deg, #6366f1 60%, #a5b4fc 100%); }
.icon-bg2 { background: linear-gradient(135deg, #8b5cf6 60%, #c4b5fd 100%); }
.icon-bg3 { background: linear-gradient(135deg, #10b981 60%, #6ee7b7 100%); }

.improved-card .service-icon i { 
    color: #fff; 
    font-size: 1.5rem; 
}

.improved-card:hover .service-icon {
    transform: scale(1.1);
}

.improved-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.improved-card p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.improved-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.improved-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.4;
}

.improved-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.improved-card .service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    border: 1px solid #e2e8f0;
    justify-content: center;
}

@media (max-width: 1024px) {
    .improved-services {
        gap: 1.5rem;
        padding: 0 1.5rem;
        justify-content: center;
    }
    
    .improved-card {
        padding: 1.5rem;
        justify-content: center;
    }
    
    .improved-card h3 {
        font-size: 1.25rem;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .improved-services {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .improved-services {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    
    .improved-card {
        padding: 1.75rem;
        justify-content: center;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    background: #e5e7eb;
}

.container {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    place-items: center;
    height: 100%;

}




/* Responsive container */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Large screen optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    transform: translateY(-2px);
    color: #4f46e5;
}

.nav-logo:hover span {
    text-shadow: 0 2px 8px rgba(99, 102,241, 0.3);
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo .logo-img:hover {
    transform: scale(1.1);
    
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6366f1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.faq-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1e293b;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    color: #4b5563;
    line-height: 1.6;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 20px 20px;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
}

/* Decorative shapes for Hero background */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #fff 0%, #667eea 80%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 40% 60%, #fff 0%, #764ba2 80%);
    opacity: 0.10;
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    position: relative;
 /*   box-shadow: 0 6px 20px rgba(0.9, 0, 0, 0.4);*/
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    width: 800px;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 19pt;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.5s both;
    width: 500px;

}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideUp 1s ease-out 0.8s both;
    
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border-radius: 20px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.4;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Styles for hero-image-container */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    width: 700px;
    height: auto;
    
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102,241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    
    border-radius: 12px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937, #6366f1, #1f2937);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease-in-out infinite;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.3s, border 0.3s;
    will-change: transform;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102,241, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: scale(1.12);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.18);
    border: 2px solid rgba(99, 102, 241, 0.22);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-card:hover h3 {
    color: #6366f1;
    transform: translateX(5px);
}

.service-card:hover p {
    color: #4b5563;
}

.service-card:hover li {
    color: #374151;
}

.service-card:hover li::before {
    color: #6366f1;
    transform: scale(1.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
    transition: all 0.3s ease;
}

.service-card p {
    margin-bottom: 20px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1f2937;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quote Calculator */
.quote-calculator {
    padding: 80px 0;
    background: #f8fafc;
}

.quote-calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.calculator {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-input {
    margin-bottom: 25px;
}

.calculator-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.calculator-input input,
.calculator-input select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.calculator-input input:focus,
.calculator-input select:focus {
    outline: none;
    border-color: #6366f1;
}

.quote-result {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.quote-price {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(45deg, #ffffff 0%, #f8fafc 25%, #ffffff 50%, #f1f5f9 75%, #ffffff 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102,241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    height: auto;
    
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 36px;
    color: #1f2937;
    text-align: left;
}

.about p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 30px;
    font-size: 1.15rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature i {
    font-size: 24px;
    color: #6366f1;
    width: 40px;
}

.feature h4 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 6px;
}

.feature p {
    margin: 0;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
}

.about-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.10);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6366f1 100%);
    position: relative;
    overflow: hidden;
}


/* Pricing Calculator Section */
.pricing-calculator-section {
    padding: 80px 20px;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-calculator-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(99,102,241,0.08);
    padding: 2.5rem;
    border: 1.5px solid #ececff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 800px;
    height: 800px;
    max-width: 750px;
    width: 100%;
}

.pricing-calculator-container:hover {
    box-shadow: 0 16px 48px rgba(99,102,241,0.15);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.pricing-offer {
    background: #7c5cff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(99,102,241,0.08);
    padding: 2.5rem;
    border: 1.5px solid #ececff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 800px;
    height: 800px;
    width: 500px;
}

.pricing-offer:hover {
    box-shadow: 0 16px 48px rgba(99,102,241,0.15);
    border-color: #6366f1;
    transform: translateY(-5px);
}

/* Mobile responsive for pricing calculator */
@media (min-width: 1200px) {
    .pricing-calculator-section {
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
        padding: 100px 20px;
    }
    
    .pricing-calculator-container {
        padding: 3rem;
        min-height: 550px;
    }
    
    .pricing-offer {
        padding: 3rem;
        min-height: 550px;
    }
}

@media (max-width: 1024px) {
    .pricing-calculator-section {
        grid-template-columns: 1.5fr 1fr;
        gap: 1rem;
        padding: 60px 1.5rem;
        justify-content: center;
    }
    
    .pricing-calculator-container {
        padding: 2rem;
        justify-content: center;
    }
    
    .pricing-offer {
        padding: 2rem;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .pricing-calculator-section {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-calculator-section {
        grid-template-columns: 1fr;
        padding: 40px 12px;
        gap: 1.2rem;
        max-width: 95vw;
        margin: 0 auto;
        justify-content: center;
    }
    
    .pricing-calculator-container {
        padding: 1.5rem;
        margin: 0 auto;
        justify-content: center;
        width: 100%;
        min-height: auto;
        max-width: 100%;
    }
    
    .pricing-calculator-title {
        font-size: 1.6rem !important;
        margin-bottom: 24px !important;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.3;
    }
    
    .pricing-calculator-form {
        gap: 16px;
    }
    
    .pricing-calculator-form label {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
        color: #374151;
        font-weight: 600;
    }
    
    .pricing-calculator-form input,
    .pricing-calculator-form select {
        padding: 14px 12px !important;
        font-size: 14px !important;
        border-radius: 10px;
        border: 1.5px solid #e5e7eb;
        background: #f9fafb;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        min-height: 44px;
    }
    
    .pricing-calculator-form input:focus,
    .pricing-calculator-form select:focus {
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
        transform: translateY(-1px);
    }
    
    
    
    .pricing-calculator-result {
        padding: 18px 16px !important;
        font-size: 1.3rem !important;
        border-radius: 12px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 1.5px solid #e0f2fe;
        margin-top: 20px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .pricing-calculator-note {
        font-size: 0.85rem !important;
        margin-top: 12px !important;
        color: #64748b;
        line-height: 1.4;
        text-align: center;
    }
    
    .pricing-offer {
        padding: 1.5rem;
        margin: 0 auto;
        justify-content: center;
        max-width: 100%;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .pricing-calculator-section {
        grid-template-columns: 1fr;
        padding: 30px 8px;
        gap: 1rem;
        max-width: 98vw;
        margin: 0 auto;
        justify-content: center;
    }
    
    .pricing-calculator-container {
        padding: 1.2rem !important;
        margin: 0 auto;
        justify-content: center;
        min-height: auto;
        max-width: 100%;
    }
    
    .pricing-offer {
        padding: 1.2rem !important;
        margin: 0 auto;
        justify-content: center;
        min-height: 500px;
        max-width: 100%;
    }
    
    .pricing-calculator-title {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .pricing-calculator-form {
        gap: 14px;
    }
    
    .pricing-calculator-form label {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
        font-weight: 600;
        color: #374151;
    }
    
    .pricing-calculator-form input,
    .pricing-calculator-form select {
        padding: 12px 10px !important;
        font-size: 13px !important;
        border-radius: 8px;
        min-height: 40px !important;
        box-sizing: border-box;
        width: 100%;
        border: 1.5px solid #e5e7eb;
        background: #f9fafb;
    }
    

    
    .pricing-calculator-result {
        padding: 16px 12px !important;
        font-size: 1.1rem !important;
        border-radius: 10px;
        margin-top: 16px !important;
        min-height: 50px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
    }
    
    .pricing-calculator-note {
        font-size: 0.75rem !important;
        margin-top: 10px !important;
        line-height: 1.3;
        padding: 0 4px;
        text-align: center;
    }
}

.pricing-calculator-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #6366f1;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.pricing-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.pricing-calculator-form label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.pricing-calculator-form input,
.pricing-calculator-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    font-family: inherit;
}

.pricing-calculator-form input:focus,
.pricing-calculator-form select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}



.pricing-calculator-result {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    font-size: 1.5rem;
    color: #10b981;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(99,102,241,0.06);
    border: 1px solid #e2e8f0;
}

.pricing-calculator-note {
    margin-top: 18px;
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

/* Extra small devices */
@media (max-width: 375px) {
    .pricing-calculator-section {
        padding: 20px 4px;
        gap: 0.8rem;
        max-width: 100vw;
    }
    
    .pricing-calculator-container {
        padding: 1rem !important;
        margin: 0;
        border-radius: 12px;
    }
    
    .pricing-offer {
        padding: 1.2rem 0.7rem;
        justify-content: center;
        min-height: 220px;
    }
    
    .pricing-calculator-title {
        font-size: 1.1rem !important;
        margin-bottom: 16px !important;
        line-height: 1.2;
    }
    
    .pricing-calculator-form {
        gap: 12px;
    }
    
    .pricing-calculator-form label {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }
    
    .pricing-calculator-form input,
    .pricing-calculator-form select {
        padding: 10px 8px !important;
        font-size: 12px !important;
        min-height: 36px !important;
        border-radius: 6px;
    }
    
    
    .pricing-calculator-result {
        padding: 12px 8px !important;
        font-size: 1rem !important;
        margin-top: 12px !important;
        min-height: 40px !important;
        border-radius: 8px;
    }
    
    .pricing-calculator-note {
        font-size: 0.7rem !important;
        margin-top: 8px !important;
        line-height: 1.2;
        padding: 0 2px;
    }
}



.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: backgroundMove 15s linear infinite;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 25px rgba(255,255,255,0.3); }
    to { text-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 35px rgba(255,255,255,0.5); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    color: #fff;
    width: 20px;
    font-size: 18px;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.contact-form textarea {
    resize: vertical;
}

/* Google Form Styling */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    margin-bottom: 15px;
    color: #1f2937;
    font-size: 1.5rem;
}

.contact-form-container p {
    margin-bottom: 25px;
    color: #6b7280;
    line-height: 1.6;
}

.google-form-wrapper {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0 auto;
}

.google-form-wrapper iframe {
    border-radius: 10px;
    min-height: 600px;
}

.form-fallback {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 20px;
}

.form-fallback p {
    margin-bottom: 15px;
    font-size: 14px;
}

.form-fallback .btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.form-note p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #10b981;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        width: 100%;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .improved-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .improved-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
    }

    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 15px;
    }

    .about h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .about p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .about-image {
        order: 1;
        margin: 0;
    }

    .about-text {
        order: 2;
    }

    .about-img {
        max-width: 280px;
        width: 100%;
        height: 280px;
    }

    /* Features Mobile */
    .features {
        gap: 25px;
        margin-top: 25px;
    }

    .feature {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        align-items: flex-start;
    }

    .feature i {
        font-size: 1.5rem;
        margin-bottom: 0;
        width: 30px;
        flex-shrink: 0;
    }

    .feature div {
        flex: 1;
    }

    .feature h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .feature p {
        font-size: 0.9rem;
        margin: 0;
        text-align: left;
    }

    /* Submit Manuscript Mobile */
    #submitIntro {
        max-width: 95vw !important;
        margin: 0 15px 32px 15px !important;
        padding: 24px 16px 20px 16px !important;
        min-height: 300px !important;
        border-radius: 12px !important;
    }

    #submitIntro h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    #submitIntro h3 {
        font-size: 1rem !important;
        margin-bottom: 16px !important;
    }

    #submitIntro p {
        font-size: 0.9rem !important;
        margin-bottom: 16px !important;
        line-height: 1.5 !important;
    }

    #submitIntro .btn {
        font-size: 0.95rem !important;
        padding: 12px 24px !important;
        margin-top: 14px !important;
        width: 100% !important;
        max-width: 260px !important;
    }

    .submit-intro-features {
        flex-direction: column;
        gap: 15px;
    }

    .submit-intro-feature {
        justify-content: center;
    }

    /* Form Mobile */
    .submit-form-container {
        max-width: 98%;
        padding: 30px 15px;
    }

    .submit-form-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .google-form-wrapper {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(99,102,241,0.08);
        border: 1.5px solid #ececff;
    }

    .google-form-wrapper iframe {
        width: 100%;
        min-height: 600px;
    }

    /* Pricing Calculator Mobile */
    .pricing-calculator-section {
        flex-direction: column;
        padding: 40px 15px;
    }

    .pricing-calculator-container {
        margin-bottom: 30px;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Navigation Logo Mobile */
    .nav-logo {
        font-size: 18px;
    }

    .nav-logo .logo-img {
        height: 32px;
    }

    /* Section Padding Mobile */
    section > .container {
        padding: 40px 15px;
    }

    /* Authors Section Mobile - Already has responsive styles */
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .services h2,
    .pricing h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    /* About section for very small screens */
    .about-content {
        padding: 30px 10px;
        gap: 30px;
    }

    .about h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .about-img {
        max-width: 240px;
        height: 240px;
    }

    .features {
        gap: 20px;
        margin-top: 20px;
    }

    .feature {
        padding: 12px;
        gap: 12px;
    }

    .feature i {
        font-size: 1.3rem;
        width: 25px;
    }

    .feature h4 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    /* Navigation for very small screens */
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .nav-logo .logo-img {
        height: 28px;
    }

    /* Hero buttons stack properly */
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }

    /* Submit form adjustments */
    #submitIntro {
        max-width: 98vw !important;
        margin: 0 8px 20px 8px !important;
        padding: 18px 12px 16px 12px !important;
        min-height: 240px !important;
        border-radius: 10px !important;
    }

    #submitIntro h2 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }

    #submitIntro h3 {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }

    #submitIntro p {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    #submitIntro .btn {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
        margin-top: 10px !important;
        width: 100% !important;
        max-width: 240px !important;
    }

    /* Google form responsive */
    .submit-form-container {
        max-width: 95%;
        padding: 25px 15px;
        margin: 0 auto;
    }

    .submit-form-heading {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .google-form-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(99,102,241,0.08);
        border: 1.5px solid #ececff;
    }

    .google-form-wrapper iframe {
        min-height: 600px;
        border-radius: 10px;
        width: 100%;
    }

    /* Service cards */
    .improved-card {
        padding: 1.25rem;
    }
}

/* Extra small devices (phones under 375px) */
@media (max-width: 375px) {
    .google-form-wrapper {
        max-width: 98%;
        margin: 0 auto;
        padding: 0;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(99,102,241,0.08);
        border: 1.5px solid #ececff;
    }

    .google-form-wrapper iframe {
        min-height: 550px;
        border-radius: 8px;
    }

    .submit-form-container {
        padding: 20px 10px;
    }

    .improved-card h3 {
        font-size: 1.2rem;
    }

    /* Pricing calculator */
    .pricing-calculator-container {
        padding: 20px 15px;
    }

    /* Features list mobile */
    .feature h4 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    /* Authors grid for very small screens */
    .author-img {
        width: 40px;
        height: 40px;
    }

    .author-img img {
        max-width: 32px;
        max-height: 32px;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }

    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-description {
        width: 100%;
    }
}

/* iPad Pro and Tablet Responsive Design */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Navigation for tablets */
    .nav-container {
        padding: 0 30px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 20px;
        display: flex; /* Ensure menu is always visible on tablets */
    }

    .nav-link {
        font-size: 15px;
    }

    .hamburger {
        display: none; /* Hide hamburger on tablets */
    }

    /* Hero Section for tablets */
    .hero {
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 30px;
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.3;
        width: 100%;
    }

    .hero-content p {
        font-size: 18px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        justify-content: center;
        gap: 20px;
        flex-direction: row; /* Keep buttons side by side on tablets */
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Services for tablets */
    .improved-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .improved-card {
        padding: 2rem;
    }

    /* About section for tablets */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 60px 30px;
        max-width: 800px;
    }

    .about h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .about-img {
        max-width: 400px;
        width: 100%;
        height: 400px;
    }

    .features {
        gap: 30px;
        max-width: 600px;
        margin: 30px auto 0;
    }

    .feature {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        align-items: flex-start;
    }

    .feature i {
        font-size: 1.8rem;
        width: 40px;
        flex-shrink: 0;
    }

    .feature h4 {
        font-size: 1.3rem;
    }

    .feature p {
        font-size: 1rem;
    }

    /* Authors section for tablets */
    .authors-image-grid {
        gap: 20px;
    }

    .authors-row {
        gap: 15px;
    }

    .author-img {
        width: 100px;
        height: 100px;
    }

    .author-img img {
        max-width: 90px;
        max-height: 90px;
    }

    /* Pricing calculator for tablets */
    .pricing-calculator-section {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        padding: 80px 30px;
    }

    .pricing-calculator-container {
        max-width: 500px;
    }

    .pricing-offer {
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    /* Submit form for tablets */
    .submit-form-container {
        max-width: 90%;
        padding: 50px 30px;
    }

    .submit-form-heading {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .google-form-wrapper {
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .google-form-wrapper iframe {
        min-height: 800px;
        border-radius: 12px;
    }

    /* FAQ for tablets */
    .faqs-section .container {
        max-width: 800px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 25px 25px;
        font-size: 1rem;
    }

    /* Footer for tablets */
    .footer-container {
        padding: 0 30px;
        max-width: 900px;
    }
}

/* iPad Pro Portrait (1024x1366) */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        max-width: 1000px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 20px;
        max-width: 700px;
    }

    .hero-image-container {
        max-width: 600px;
    }

    .improved-services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 2.5rem;
    }

    .about-content {
        max-width: 900px;
        gap: 60px;
    }

    .submit-form-container {
        max-width: 85%;
    }

    .google-form-wrapper {
        max-width: 850px;
        margin: 0 auto;
        padding: 0;
    }
}

/* Large tablets and small desktops */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1100px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .improved-services {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1.2fr 1fr;
        max-width: 1000px;
        gap: 50px;
    }

    .about h2 {
        text-align: left;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }
}

/* Worked with Authors Section */
.authors {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.authors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.authors .container {
    position: relative;
    z-index: 2;
}

.authors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937, #6366f1, #1f2937);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease-in-out infinite;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.author-institution {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #6366f1;
}

.author-institution:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102,241,0.15);
}

.author-institution i {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.author-institution h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Submit Manuscript Section */
.submit-manuscript {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6366f1 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.submit-manuscript::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.submit-manuscript .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Submit Intro Container */
.submit-intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.submit-intro-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 700px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.submit-intro-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.submit-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

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

.submit-intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.submit-intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
}

.submit-intro-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.submit-intro-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.submit-intro-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.submit-intro-feature:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102,241,0.3);
}

.submit-intro-feature i {
    color: #10b981;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.submit-intro-feature:hover i {
    color: white;
}

.submit-intro-feature span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.submit-intro-feature:hover span {
    color: white;
}

.submit-cta-btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102,241,0.3);
    text-transform: none;
}

.submit-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102,241,0.4);
    background: linear-gradient(135deg, #5b5bf1, #8b5cf6);
}

.submit-cta-btn i {
    font-size: 1rem;
}

/* Form Container */
.submit-form-container {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 1.08);
}

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

.submit-form-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.submit-form-heading {
    text-align: center;
    margin-bottom: 24px;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.submit-form-subtext {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.google-form-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.google-form-wrapper iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 16px;
    display: block;
}

/* Make Google Form fullscreen only in the submit-manuscript section */

/* Only make the Google Form fullscreen when .form-fullscreen is present */

/* Make Google Form fill the submit section, not the viewport */
#submit-manuscript .google-form-wrapper {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

#submit-manuscript .google-form-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    border-radius: 0;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .submit-intro-content {
        padding: 40px 24px;
        margin: 0 20px;
    }
    
    .submit-intro-title {
        font-size: 2.2rem;
    }
    
    .submit-intro-subtitle {
        font-size: 1.3rem;
    }
    
    .submit-intro-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .submit-intro-feature {
        justify-content: center;
    }
    
    .submit-form-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .submit-form-header h2 {
        font-size: 1.8rem;
    }
}

.submit-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.submit-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.submit-info h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.submit-info p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.submit-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.submit-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.submit-feature:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.submit-feature i {
    color: #6366f1;
    font-size: 1.2rem;
    width: 20px;
}

.submit-feature span {
    color: #374151;
    font-weight: 500;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 2rem;
    }

    .calculator-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .calculator-wrapper {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    .submit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .submit-info {
        position: static;
    }
    
    .authors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .journals-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        
    }
}



@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}


.journals-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(99,102,241,0.06);
}

/* Journals section background color */
.journals {
    background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
    padding: 80px 0;
}

.journals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.journals-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: white;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    
}

.journal-gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    min-height: 400px;
    z-index: 2;
    margin-bottom: 150px;
}

.journal-gallery {
    position: relative;
    width: 800px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    
}

.journal-gallery img {
    position: absolute;
    width: 450px;
    height: auto;
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    object-fit: contain;
    background: white;
    padding: 20px;
    will-change: transform, opacity;
}

@keyframes shrinkRight {
    0% { transform: translateX(120%) scale(0.8); opacity: 0.6; }
    50% { transform: translateX(60%) scale(0.4); opacity: 0.3; }
    100% { transform: translateX(0) scale(0); opacity: 0; }
}

@keyframes shrinkLeft {
    0% { transform: translateX(-120%) scale(0.8); opacity: 0.6; }
    50% { transform: translateX(-60%) scale(0.4); opacity: 0.3; }
    100% { transform: translateX(0) scale(0); opacity: 0; }
}

@keyframes growFromLeft {
    0% { transform: translateX(-120%) scale(0.4); opacity: 0; }
    50% { transform: translateX(-60%) scale(0.6); opacity: 0.3; }
    100% { transform: translateX(0) scale(0.8); opacity: 0.6; }
}

@keyframes growFromRight {
    0% { transform: translateX(120%) scale(0.4); opacity: 0; }
    50% { transform: translateX(60%) scale(0.6); opacity: 0.3; }
    100% { transform: translateX(0) scale(0.8); opacity: 0.6; }
}

.journal-gallery img.left {
    transform: translateX(-120%) scale(0.8);
    opacity: 0.6;
    z-index: 1;
    transform-origin: right center;
}

.journal-gallery img.center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.2);
}

.journal-gallery img.right {
    transform: translateX(120%) scale(0.8);
    opacity: 0.6;
    z-index: 1;
    transform-origin: left center;
}

.journal-gallery img.transitioning-right {
    animation: shrinkRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.journal-gallery img.transitioning-left {
    animation: shrinkLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.journal-gallery img.growing-from-left {
    animation: growFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.journal-gallery img.growing-from-right {
    animation: growFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #6366f1;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(99, 102,241,0.25);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-nav:hover {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

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

.gallery-nav i {
    font-size: 1.4rem;
    color: white;
}

@media (max-width: 768px) {
    .journal-gallery-container {
        padding: 0 40px;
    }

    .journal-gallery img {
        width: 240px;
        padding: 15px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .journals-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-bottom: 40px;
        
    }

    .journal-gallery img {
        width: 200px;
        padding: 12px;
    }

    .journal-gallery img.left {
        transform: translateX(-110%) scale(0.8);
    }

    .journal-gallery img.right {
        transform: translateX(110%) scale(0.8);
    }
}

/* Styles for Academic Precision card */
.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    max-width: 500px;
    text-align: center;
    width: 100%;
    height: 150px;
    
}


.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 10px;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-card ul li {
    font-size: 1rem;
    color: #2d2d2d;
    margin: 5px 0;
}

.offer-card ul li span {
    font-weight: 600;
    color: #6366f1;
}


.pricing-offer h2{
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Smooth hover effect for offer-card */
.offer-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
    
}

/* Slider */


/* Service Modal Styles */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.service-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.service-modal-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 95vw;
  width: 400px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(99,102,241,0.18);
  z-index: 2;
  animation: modalIn 0.25s cubic-bezier(.4,2,.6,1) both;
}
.service-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2rem;
  color: #6366f1;
  cursor: pointer;
  font-weight: bold;
  z-index: 3;
  transition: color 0.2s;
}
.service-modal-close:hover {
  color: #8b5cf6;
}
@keyframes modalIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 480px) {
  .service-modal-content {
    width: 95vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .service-modal-close {
    top: 10px;
    right: 12px;
    font-size: 1.5rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@-webkit-keyframes carousel-animate {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(200%) scale(0.7);
  }
  3%, 14.2857142857% {
    visibility: visible;
    opacity: 0.8;
    transform: translateX(100%) scale(0.9);
  }
  17.2857142857%, 28.5714285714% {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  31.5714285714%, 42.8571428571% {
    visibility: visible;
    opacity: 0.8;
    transform: translateX(-100%) scale(0.9);
  }
  45.8571428571% {
    visibility: visible;
    opacity: 0;
    transform: translateX(-200%) scale(0.9);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-200%) scale(0.7);
  }
}
@keyframes carousel-animate {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(200%) scale(0.7);
  }
  3%, 14.2857142857% {
    visibility: visible;
    opacity: 0.8;
    transform: translateX(100%) scale(0.9);
  }
  17.2857142857%, 28.5714285714% {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  31.5714285714%, 42.8571428571% {
    visibility: visible;
    opacity: 0.8;
    transform: translateX(-100%) scale(0.9);
  }
  45.8571428571% {
    visibility: visible;
    opacity: 0;
    transform: translateX(-200%) scale(0.9);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-200%) scale(0.7);
  }
}
:root {
  --light: 0;
  --light: 0;
  --max-width-post: 420px;
  --primary: hsl(
    calc(64 + 220 * var(--light)),
    calc(77% - 7% * var(--light)),
    calc(79% - 56% * var(--light))
  );
  --bg: hsl(
    calc(284 - 220 * var(--light)),
    calc(70% + 7% * var(--light)),
    calc(23% + 56% * var(--light))
  );
  --text-primary: hsl(
    calc(60 * var(--light)),
    calc(19% * var(--light)),
    calc(97% - 89% * var(--light))
  );
  --font-size-sm: clamp(0.7rem, 0.91vw + 0.47rem, 1.2rem);
  --font-size-base: clamp(0.88rem, 1.14vw + 0.59rem, 1.5rem);
  --font-size-md: clamp(1.09rem, 1.42vw + 0.74rem, 1.88rem);
  --font-size-lg: clamp(1.37rem, 1.78vw + 0.92rem, 2.34rem);
  --font-size-xl: clamp(1.71rem, 2.22vw + 1.15rem, 2.93rem);
  --font-size-xxl: clamp(2.14rem, 2.77vw + 1.44rem, 3.66rem);
  --font-size-xxxl: clamp(2.67rem, 3.47vw + 1.8rem, 4.58rem);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

@supports (height: 100dvh) {
  body {
    height: 100dvh;
  }
}



.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #6366f1 40%, #8b5cf6 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
    border: none;
    outline: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    height: 40px;
    margin: 0;
}
.nav-btn:hover, .nav-btn:focus {
    transform: scale(1.08);
    text-decoration: none;
}









.carousel {
  pointer-events: none;
  position: relative;
  -webkit-padding-before: 67px;
          padding-block-start: 67px;
  -webkit-padding-after: max(24px, calc(29px + var(--font-size-md)));
          padding-block-end: max(24px, calc(29px + var(--font-size-md)));
  perspective: 100px;
  width: 100%;
}

.carousel__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 61.2vh;
}
.carousel .item {
  position: absolute;
  max-width: 418px;
  height: 100%;
  margin-inline: var(--container-padding-horizontal);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  transform: translateX(100%) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  
}

.carousel .item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.carousel .item.prev {
  opacity: 0.2;
  visibility: visible;
  transform: translateX(-120%) scale(0.9);
}

.carousel .item.next {
  opacity: 0.2;
  visibility: visible;
  transform: translateX(120%) scale(0.9);
}


.carousel img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 12px;
  box-shadow: 5px 20px 12px rgba(0, 0, 0, 0.1);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  z-index: 10;
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel__btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}
.carousel__btn--prev {
  left: 180px;
}

.carousel__btn--next {
  right: 180px;
}






@media (max-width: 568px) {
    .carousel .item {
        margin-inline: calc(var(--container-padding-horizontal) + 1px);
    }
    .carousel {
        -webkit-padding-after: 52px;
                padding-block-end: 52px;
    }
  
    .carousel__btn--prev {
    left: 0px;
    }

    .carousel__btn--next {
    right: 0px;
    }

}

@media (max-width: 768px) {
    .carousel .item {
        margin-inline: calc(var(--container-padding-horizontal) + 1px);
    }
    .carousel {
        -webkit-padding-after: 52px;
                padding-block-end: 52px;
    }
  
    .carousel__btn--prev {
    left: 0px;
    }

    .carousel__btn--next {
    right: 0px;
    }

}


@media (max-width: 900px) {
  .authors-carousel {
    max-width: 300px;
  }
  .author-img-placeholder {
    height: 180px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* Contact Section Styles */
.contact-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  position: relative;
  color: white;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(1px);
}

.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f8f9ff;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e1e5ff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-item i {
  font-size: 1.3rem;
  color: #a5b4fc;
  min-width: 24px;
}

.contact-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #f1f5f9;
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #a5b4fc;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #000000;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000000;
  opacity: 0.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-form button {
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.contact-form button:hover {
  background: linear-gradient(45deg, #7c3aed, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 0;
    min-height: auto;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem 0;
  }
  
  .contact-section .container {
    padding: 0 1rem;
  }
  
  .contact-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 1.25rem;
  }
}

