a{
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
/*.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}



.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}
.get-started-white{
    background: #fff;
    color: var(--primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 5px 5px 0px var(--primary);
    transition: transform 0.3s ease;
}
.get-started-white:hover{
    box-shadow:unset;
}

.get-started {
    background: var(--primary);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 5px 5px 0px var(--purple-100);
    transition: transform 0.3s ease;
}

.get-started:hover {
    transform: translateY(-2px);
    box-shadow: unset;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}*/

/* Hero Section Styles */
.hero {
    padding-top: 30px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.store-button:hover {
    background: var(--primary);
    color: white;
}

.users {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #ddd;
}

.avatar:first-child {
    margin-left: 0;
}

.users-text {
    color: var(--text-secondary);
}

.users-text strong {
    color: var(--text-primary);
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Wave decoration */
.hero::after {
    content: "";
display: block;
background-image: url(./banner-shape.svg);
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 200px;
background-position: center;
margin-top: -50px;
}


.container-sajid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features {
    padding: 4rem 0;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
}

.features-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: lightgray;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    align-items: center;
    gap: 2rem;
padding: 10px; 
border-radius: 31px;
background: #fff;
}

.feature {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--purple-100);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: lightgray;
}

.phone-container {
    perspective: 1000px;
    margin: 2rem auto;
}

.phone {
    width: 280px;
    height: 560px;
    background-color: var(--primary);
    border-radius: 3rem;
    padding: 1rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10rem;
    height: 1.5rem;
    background-color: #000;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 2.5rem;
    overflow: hidden;
    padding: 1rem;
}
.phone img{
    width:100%;
    height:100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.app-avatar {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.app-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.chapter-list {
    margin-bottom: 1rem;
}

.chapter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.exercises-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exercises-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.exercise {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
}
.hero-section-1 {
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    overflow: hidden;
}

.container-sajid-1 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 1rem;
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-image-large {
    max-width: 100%;
    height: auto;
   filter: drop-shadow(0 10px 20px rgba(255, 254, 180, 0.2));
    animation: floatAnimationLarge 4s ease-in-out infinite;
}

.phone-image-small {
    position: absolute;
    max-width: 60%;
    height: auto;
    right: -10%;
    bottom: 10%;
    filter: drop-shadow(0 5px 10px rgba(100, 50, 255, 0.15));
    animation: floatAnimationSmall 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes floatAnimationLarge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatAnimationSmall {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.content-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.title-1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.2;
}

.title-1 span {
    color: #7c3aed;
}

.description-1 {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-100);
}

.stat-info h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
}

.cta-button-1 {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.cta-button-1:hover {
    background-color: var(--purple-100);
    transform: translateY(-2px);
}


.thesis-section {
    max-width: 1200px;
    margin: 0rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thesis-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.thesis-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thesis-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thesis-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.thesis-box {
    background-color: var(--bg-gradient);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thesis-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thesis-box h3 {
    font-size: 1rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.thesis-box p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.thesis-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thesis-image img {
    max-width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.container-step {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-step {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-description-step {
    color: var(--muted-color);
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    display: none;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.step-content {
    background-color: var(--purple-100);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    max-width: 500px;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--muted-color);
}

.step-image {
    margin-top: 1.5rem;
}

.step-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-section {
    position: relative;
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(109, 40, 217, 0.8);
}

.video-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 1rem;
}

.play-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.video-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.video-description {
    opacity: 0.8;
}


.Dissertation-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.Dissertation-box {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
}

.Dissertation-box:hover {
    transform: scale(1.02);
}

.Dissertation-box-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.Dissertation-box-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Dissertation-box-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.Dissertation-section-text {
    text-align: center;
    padding: 35px 0px;

}

.Dissertation-section-text h1{
     font-size: 2.5rem;
}

.Dissertation-section-text p {
    margin-bottom: 25px;
}











.gradient-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.gradient-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gradient-box {
    height: 150px;
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}


.gradient-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.gradient-box h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.gradient-box p {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.gradient-1 {
    background:#fff;
    color: #000000;
}

.gradient-2 {
    background:#fff;
    color: #000000;
}

.gradient-3 {
    background:#fff;
    color: #000000;
}

.gradient-4 {
    background:#fff;
    color: #000000;
}

.gradient-5 {
    background:#fff;
    color: #000000;
}

.gradient-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    transition: transform 0.5s ease;
}

.gradient-box:hover::after {
    transform: rotate(0deg);
}


.unique-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.image-container {
    flex: 1;
    max-width: 50%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   
}

.boxes-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.box p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.box-1 {
    border-top: 4px solid #3498db;
}

.box-2 {
    border-top: 4px solid #e74c3c;
}

.box-3 {
    border-top: 4px solid #2ecc71;
}

.box-4 {
    border-top: 4px solid #f39c12;
}

.container-sodu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 12px;
  }

  .section-heading p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
  }

  .rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center;
  }

  .rating-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 5px var(--primary) dotted;
  }

  .rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 5px var(--primary) solid;
  }

  .logo-container {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .platform-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
  }

  .rating {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .rating-number {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
  }

  .star {
    color: #fbbf24;
  }



  .container-faq {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: flex;
    gap: 2rem;
    min-height: 80vh;
    align-items: flex-start;
}

/* FAQ Styles */
.faq-section {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
    color: var(--primary);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 1rem;
    max-height: 200px;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

/* Contact Form Styles */
.contact-section {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-section  .form-group {
    margin-bottom: 1rem;
    position: relative;
}

.contact-section  .form-group  label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.contact-section  .form-group input, textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.contact-section  .form-group  input {
    height: 2.5rem;
}

.contact-section  .form-group textarea {
    height: 100px;
    resize: none;
}

.contact-section  .form-group input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}





.contact-section  button:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 0.8rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    animation: slideIn 0.5s ease;
}

/* Input validation styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    background: #fff8f8;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Loading spinner */
.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.gradient-section-1 {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-gradient) 50%, var(--purple-100) 100%);
    padding: 6rem 2rem;
  }

  .section-header {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto 4rem auto;
  }

  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .slider-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .slide-box {
    position: relative;
    margin: 0 20px;
    border-radius: 25px;
    overflow: hidden;
    height: 450px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .slide-box:hover {
    transform: translateY(-10px);
  }

  .slide-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    transition: bottom 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .slide-box:hover .slide-content {
    bottom: 0;
  }

  .slide-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Custom Slick Slider Styles */
  .slick-dots {
    bottom: -60px;
  }

  .slick-dots li {
    margin: 0 8px;
  }

  .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
    font-size: 15px;
  }

  .slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .slick-prev:hover, .slick-next:hover {
    background: white;
    transform: scale(1.1);
  }

  .slick-prev:before, .slick-next:before {
    color: #6366f1;
    font-size: 24px;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }

  .main-section-drop {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
}

.content-container-drop {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.steps-container {
    padding-right: 2rem;
}

.section-title-drop {
    margin-bottom: 3rem;
}

.section-title-drop h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-title-drop .highlight {
    color: var(--primary);

}

.steps-list {
    position: relative;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.step-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.step-number {
    position: absolute;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-item:nth-child(1) .step-number {
    background: #e8efff;
    color: #4a90e2;
}

.step-item:nth-child(2) .step-number {
    background: #ffe8ef;
    color: #ff0066;
}

.step-item:nth-child(3) .step-number {
    background: #e8fff0;
    color: #00cc66;
}

.step-item:nth-child(4) .step-number {
    background: #fff0e8;
    color: #ff6600;
}

.step-item:nth-child(5) .step-number {
    background: #f0e8ff;
    color: #6600ff;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.map-container {
    position: relative;
    height: 80%;
    background: white;
    border-radius: 15px;
    margin-top: 111px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#map {
    max-width: 100%;
    height: 100%;
}


.footer {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple-100) 100%);
    padding: 2rem;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item-sajidd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item-sajidd:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-item-sajidd i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item-sajidd:hover i {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.contact-info {
    flex: 1;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f3f4f6;
}

.footer-bottom {
    background: linear-gradient(90deg, var(--bg-gradient) 0%, #000 100%);
    padding: 1.5rem;
    color: white;
    text-align: center;
    position: relative;
}

.social-icons {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-icon:hover:before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #007bff;
}

.btn-text {
    position: absolute;
    right: 70px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.float-btn:hover .btn-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: -60px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1000;
}

.scroll-top.visible {
    bottom: 160px;
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.1);
}


.service-section {
    padding: 10px 20px;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-sajidkhan {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-left {
    padding-right: 30px;
}

.section-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.section-description {
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.2s ease forwards;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.6s ease forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.3s; }
.skill-item:nth-child(2) { animation-delay: 0.4s; }
.skill-item:nth-child(3) { animation-delay: 0.5s; }
.skill-item:nth-child(4) { animation-delay: 0.6s; }
.skill-item:nth-child(5) { animation-delay: 0.7s; }

.skill-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.skill-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: var(--primary);
}

.skill-name {
    font-weight: 500;
    color: #2d3436;
}

.progress-bar {
    height: 8px;
    background: #dfe6e9;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--purple-100));
    width: 0;
    border-radius: 4px;
    transition: width 1s ease;
}
.bibliometric h1{
    font-size: 2.5rem;
}

.content-right {
    position: relative;
}

.service-image {
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.6s 0.8s ease forwards;
}

.service-image img {
    width: 100%;
    height: auto;
}

.contact-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 1s ease forwards;
}

.contact-btn-sajid {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
}

.primary-btn {
    background: var(--primary);
    color: white;
}

.secondary-btn {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-btn-sajid:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.section-box-2 {
    padding: 4rem 1rem;
}

.container-2-box {
    max-width: 1200px;
    margin: 0 auto;
}

.container-2-box  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
}

.container-2-box  .grid {
    display: grid;
    gap: 2rem;
}

.faiz-unique-section {
    padding: 2rem 0;
}

.faiz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faiz-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.faiz-column {
    flex: 1;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.faiz-heading {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 2rem;
}

/* Left Container Styles */
.faiz-left-container .faiz-box-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faiz-left-container .faiz-box {
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faiz-left-container .faiz-box:hover {
    transform: scale(1.05);
}

.faiz-left-container .faiz-box:active {
    transform: scale(0.95);
}

.faiz-left-container .faiz-box-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.faiz-left-container .faiz-box-1 { background-color: #e3f2fd;}
.faiz-left-container .faiz-box-2 { background-color: #e8f5e9;}
.faiz-left-container .faiz-box-3 { background-color: #fff9c4;}
.faiz-left-container .faiz-box-4 { background-color: #fce4ec;}
.faiz-left-container .faiz-box-5 { background-color: #f3e5f5;}

/* Right Container Styles */
.faiz-right-container .faiz-expandable-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faiz-right-container .faiz-expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.faiz-right-container .faiz-expandable-header:hover {
    background-color: var(--primary);
}

.faiz-right-container .faiz-expandable-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faiz-right-container .faiz-expandable-box.faiz-active .faiz-expandable-content {
    max-height: 200px;
    padding: 1rem;
}

.faiz-right-container .faiz-chevron {
    transition: transform 0.3s ease;
}

.faiz-right-container .faiz-expandable-box.faiz-active .faiz-chevron {
    transform: rotate(180deg);
}


@media (min-width: 576px) {
    .Dissertation-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}



@media (min-width: 768px) {
    .container-sajid-1 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .phone-container {
        order: 0;
    }

    .content-1 {
        order: 1;
    }
    .thesis-container {
        grid-template-columns: 3fr 2fr;
    }
    .timeline-line {
        display: block;
    }

    .step {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
    }

    .step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .step-content,
    .step-image {
        flex: 1;
    }

    .step-image {
        margin-top: 0;
    }
    
}

@media (min-width: 992px) {
    .Dissertation-container {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    .Dissertation-box {
        max-width: 280px;
    }

    .Dissertation-box-image {
        height: 180px;
    }
}


.container-2-box .box-container.visible {
    opacity: 1;
    transform: translateY(0);
}

  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .slide-box {
      height: 400px;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    .content-container-drop {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-container {
        padding-right: 0;
    }

    .section-title-drop h2 {
        font-size: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        text-align: center;
        padding: 1rem;
    }

    .container-sajidkhan {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .content-left {
        padding-right: 0;
        order: 2;
    }

    .content-right {
        order: 1;
        margin-bottom: 30px;
    }

    .skill-info {
        justify-content: center;
    }

    .contact-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
    .faiz-row {
        flex-direction: column;
    }
    .unique-section{
        margin: 0px auto;
        padding: 1rem;
    }
  }

@media (max-width: 768px) {
    .sajid-section {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }

    .sajid-image-container {
        max-width: 100%;
    }
    .section-title-drop {
        text-align: center;
    }

    .sajid-number {
        margin: 0 auto 2rem auto;
    }

    .sajid-title {
        font-size: 1.5rem;
    }

    .sajid-content {
        padding: 1rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .store-buttons {
        justify-content: center;
    }

    .users {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: 1fr;
        align-items: center;
        padding: 0px; 
border-radius: 0px;
background: transparent;
    }
    .form-group label{
        text-align:left !important;
    }

    .features-column:first-child {
        text-align: right;
    }

    .features-column:last-child {
        text-align: left;
    }

    .feature-icon {
        margin: auto;
    }

    .features-column:last-child .feature-icon {
        margin: auto;
    }
    .phone{
        width: 100%;
    }
    .phone img{
    width:100%;
    height:100%;
}
.title-1 {
        font-size: 2rem;
        text-align: center;
    }

    .description-1 {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: flex-start;
    }

    .cta-button-1 {
        display: block;
        text-align: center;
        margin: 1rem auto;
    }

    .phone-image-small {
        max-width: 50%;
        right: 0;
        bottom: 5%;
    }
    .gradient-wrapper {
        grid-template-columns: 150px 1fr;
    }
    .gradient-box{
        height: 150px;
        padding: 1rem;
    }
    .gradient-box h2{
        font-size: 0.8rem;
    }
    .content-wrapper {
        flex-direction: column;
    }

    .image-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .boxes-container {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
      }

      .section-heading p {
        font-size: 16px;
      }

      .rating-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
      }
      .container-faq {
        flex-direction: column;
        margin: 1rem auto;
    }
    
    .faq-section, .contact-section {
        width: 100%;
    }

    .faq-section {
        margin-bottom: 1rem;
    }
    .gradient-section {
        padding: 4rem 1rem;
      }

      .slider-container {
        padding: 0;
      }

      .section-header h2 {
        font-size: 1.8rem;
      }

      .section-header p {
        font-size: 1rem;
      }

      .slide-box {
        height: 350px;
        margin: 0 10px;
      }

      .slide-content h3 {
        font-size: 1.5rem;
      }

      .slide-content p {
        font-size: 1rem;
      }

      .slick-prev, .slick-next {
        display: none !important;
      }
      .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .btn-text {
        right: 60px;
        font-size: 12px;
    }

    .scroll-top {
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .scroll-top.visible {
        bottom: 140px;
    }
    .container-sajid-1{
        gap: 0px;
    }

    .Dissertation-container{
          padding: 15px;
    }
    
}

@media (max-width: 576px) {
    .main-section-36 {
        padding: 2rem 1rem;
    }

    .section-title-drop h2 {
        font-size: 1.5rem;
    }

    .step-content {
        padding: 1rem;
    }
    .map-container{
        height: 200px;
        margin-top: 5px;
    }
    #map{
        height: 200px;
    }


    .service-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn-sajid {
        width: 100%;
    }
    .hero::after{
        height: 165px;
    }
}