*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10px;
    background-color: #fff;
}

header ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0; /* Added padding reset */
    margin: 0; /* Added margin reset */
}

header h3 {
    font-size: 20px;
    font-family: 'Cambria', 'Cochin', 'Georgia', 'Times', 'Times New Roman', serif;
    margin-left: 20px;
    color: #4937F8;
}

.order-btn {
    font-size: 10px;
    cursor: pointer;
    border: none;
    color: #fff;
    background-color: #4937F8;
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 20px;
}

.nav {
    display: flex;
    gap: 50px;
    align-items: center; /* Added to vertically align the list and button */
}

.nav li {
    padding-right: 15px;
    color: #666666;
}
.firstsec {
    background-color: #EFF6FF;
    height: 90vh;
    animation: firstsec 5s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  @keyframes firstsec {
    from {
      opacity: 0;
      transform: translateX(70px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .firstsec-alert {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .firstsecp {
    font-size: 12px;
    background-color: #EF4444;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    color: #fff;
    align-self: flex-start; /* Adjust position as needed */
  }
  
  .firstsec p {
    margin-top: 20px;
    font-size: 13px;
  }
  
  .firstsecdiv {
    display: flex;
    flex-wrap: wrap; /* Allows content to wrap on smaller screens */
    justify-content: space-between;
    align-items: center;
    gap: 100px;
  }
  
  .firstsec img {
    height: 300px;
    border-radius: 25px;
    max-width: 100%; /* Ensures image doesn't exceed its container */
  }
  
  .more {
    flex: 1; /* Ensures the text container takes up available space */
    margin-right: 20px; /* Adjust as needed */
  }
  
  .firstsec h3 {
    font-size: 30px; /* Reduced size for better mobile experience */
    line-height: 1.2; /* Improved line height for readability */
  }
  
  /* Media Query for Mobile Devices */
  @media (max-width: 768px) {
    .firstsec {
      height: auto; /* Adjusts height for smaller devices */
    }
    .firstsecdiv {
      flex-direction: column;
    }
    .image-container {
      order: -1; /* Moves image above text on mobile */
    }
  }
.breathing {
    position: relative;
    padding: 10px 20px;
    font-size: 10px;
    cursor: pointer;
    border: none;
    color: #fff;
    background-color: #2563EB;
    transition: background-color 0.3s ease;
    overflow: hidden;
    margin: 20px;
    border-radius: 20px;
  }
  
  .breathing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .breathing:hover::before {
    opacity: 1;
  }
  
  .breathing {
    animation: breathing 2s infinite;
  }
  
  @keyframes breathing {
    0% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1.2);
    }
  }
  .section-secondary {
    background-color: #F9FAFB;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    animation: skills 9s ease-in-out;
}

.section-secondary h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.section-secondary-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.feature {
    background-color: #fff;
    width: 450px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 30px;
    color: #4937F8;
    margin-bottom: 10px;
}

.feature h6 {
    font-size: 15px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 13px;
    margin: 0;
}

@keyframes skills {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* CSS for centering video */
.videosec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto; 
    padding: 20px;
  }
  
  .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; 
  }
  
  .video-container video {
    max-width: 100%; 
    height: auto; 
  }
@keyframes videosec{
    from{
        opacity: 0;
        margin-left: 100px;
    }
    to{
        opacity: 1;
    }
}
.videosec h3,.who h3{
    text-align: center;
    padding-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.section-who {
    background-color: #fff;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    animation: who 15s ease-in;
}

@keyframes who {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.who-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.who-feature {
    background-color: #fff;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.who-feature i {
    font-size: 30px;
    color: #4937F8;
    margin-bottom: 10px;
}

.who-feature h6 {
    font-size: 15px;
    margin-bottom: 10px;
}

.who-feature p {
    font-size: 13px;
    text-align: center;
}
.section-special {
    background-color: #EFF6FF;
    animation: thirdsec 18s ease-in;
    padding: 40px 0;
}
.section-special h2{
    text-align: center;
}

@keyframes thirdsec {
    from {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.feature-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 200px; /* Added for better responsiveness */
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
}
.section-order {
    background-color: #4937F8;
    padding: 40px 0;
    animation: formsec 20s ease-in;
}

.order-container {
    display: flex;
    background-color: #ffffff;
    margin: 0 auto;
    width: 650px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.order-details {
    flex: 1;
}

.order-form {
    flex: 1;
}

.order-container input {
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    padding: 0 10px;
}

form button {
    width: 100%;
    color: #fff;
    background-color: #4937F8;
    border: none;
    margin-top: 20px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
}

.order-details h2 {
    margin-bottom: 20px;
}

.order-details p {
    margin-bottom: 20px;
    color: #374151;
    font-size: 15px;
}

.order-details ul {
    padding: 0;
}

.order-details li {
    list-style: none;
    padding-bottom: 10px;
    font-size: 13px;
}

.order-details li::before {
    content: "✔";
    color: #4937F8;
    margin-right: 5px;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 10px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 12px;
}

@keyframes formsec {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
 /* Mobile Responsiveness */

/* For screens 768px and below */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack the header elements */
        height: auto; /* Adjust height to accommodate the stacked layout */
    }

    .nav {
        flex-direction: column; /* Stack navigation links */
        gap: 10px; /* Reduce gap between navigation links */
        width: 100%; /* Ensure the navigation spans full width */
    }

    header h3 {
        margin: 10px 0; /* Reduce vertical margin */
        font-size: 18px; /* Reduce font size */
    }

    .order-btn {
        margin: 10px 0; /* Reduce vertical margin */
        width: 100%; /* Make the button full width */
    }

    .firstsecdiv {
        flex-direction: column; /* Stack elements vertically */
        gap: 20px; /* Reduce gap */
    }

    .firstsec h3 {
        font-size: 24px; /* Reduce font size for better readability */
    }

    .firstsec img {
        width: 100%; /* Ensure image occupies full width */
        height: auto; /* Allow height to adjust proportionally */
    }

    .section-secondary-content {
        flex-direction: column; /* Stack elements vertically */
        gap: 20px; /* Reduce gap */
    }

    .feature {
        width: 100%; /* Ensure the feature box occupies full width */
    }

    .videosec h3, .who h3 {
        font-size: 18px; /* Reduce font size */
    }

    .who-content {
        gap: 20px; /* Reduce gap */
    }

    .features-container {
        gap: 20px; /* Reduce gap */
    }

    .feature-box {
        flex: 1 1 auto; /* Adjust flex properties */
    }

    .order-container {
        flex-direction: column; /* Stack elements vertically */
        width: 90%; /* Reduce width for smaller screens */
    }

    .order-details, .order-form {
        width: 100%; /* Ensure full width */
    }

    footer .footer-content {
        flex-direction: column; /* Stack footer content vertically */
        text-align: center; /* Center text */
    }

    footer p {
        margin: 10px 0; /* Add some margin for vertical spacing */
    }
}

/* For screens 480px and below */
@media (max-width: 480px) {
    header h3 {
        font-size: 16px; /* Further reduce font size */
    }

    .order-btn {
        font-size: 8px; /* Reduce button font size */
        padding: 8px 10px; /* Reduce button padding */
    }

    .firstsec h3 {
        font-size: 20px; /* Further reduce font size */
    }

    .section-secondary h3 {
        font-size: 16px; /* Reduce font size */
    }
}