/* Full-width blue blur background overlay for index.html */
.blue-blur-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(114,161,222,0.55) 0%, rgba(75,108,183,0.55) 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

body, .container, .back-vid {
    position: relative;
    z-index: 1;
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* About Page Styles */
.about-hero {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #fff;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #72a1de);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1.5s ease-out;
}

.about-hero p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeInUp 1.8s ease-out;
}

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

.about-vid {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.mission-vision {
    display: flex;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(114, 161, 222, 0.3), transparent);
    z-index: -1;
    transform: translate(-50%, -50%);
}

.mv-card {
    flex: 1;
    padding: 50px 40px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #4b6cb7, #72a1de);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.mv-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #72a1de;
    background: linear-gradient(135deg, #72a1de, #4b6cb7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.mv-card h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.mv-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #4b6cb7, #72a1de);
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    position: relative;
}

.services-section h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4b6cb7, #72a1de);
    border-radius: 2px;
}

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

.service-card {
    padding: 40px 30px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #4b6cb7, transparent);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    background: rgba(21, 33, 58, 0.7);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #72a1de, #4b6cb7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.team-section {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    position: relative;
    padding: 100px 30px;
    background: linear-gradient(to bottom, rgba(10, 10, 30, 0.7), rgba(5, 5, 20, 0.9));
    border-radius: 20px;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/grid2.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #64ffda, #8a84ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #64ffda, #8a84ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.team-member p {
    color: #64ffda;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links i {
    font-size: 24px;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.social-links i:hover {
    color: #64ffda;
    cursor: pointer;
    transform: translateY(-3px);
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4b6cb7, #72a1de);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.team-member:hover::after {
    transform: scaleX(1);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
    border: 4px solid rgba(114, 161, 222, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.team-member:hover img {
    border-color: rgba(114, 161, 222, 0.8);
    transform: scale(1.05);
}

.team-member h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-member p {
    color: #72a1de;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links i {
    font-size: 1.5rem;
    color: rgba(114, 161, 222, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links i:hover {
    color: #fff;
    background: linear-gradient(135deg, #4b6cb7, #72a1de);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reviews-section {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    position: relative;
}

.reviews-section h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4b6cb7, #72a1de);
    border-radius: 2px;
}

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

.review-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    font-size: 150px;
    position: absolute;
    top: -20px;
    right: 20px;
    color: rgba(114, 161, 222, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(114, 161, 222, 0.3);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.review-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.review-header p {
    color: #72a1de;
    margin: 5px 0 0;
    font-weight: 500;
}

.rating {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.rating i {
    margin-right: 5px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.review-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* About page specific media queries */
@media (max-width: 1100px) {
    .about-hero h1 {
        font-size: 3.8rem;
    }

    .mission-vision {
        padding: 50px 0;
    }
}

@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 3.2rem;
    }

    .about-hero p {
        font-size: 1.3rem;
    }

    .mission-vision {
        flex-direction: column;
        gap: 50px;
    }

    .mission-vision::before {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .mission-vision {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .services-section h2,
    .team-section h2,
    .reviews-section h2 {
        font-size: 2.2rem;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }

    .hero h1,
    .hero p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact Page Styles */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
  
.contact-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
  
.contact-header .section-title {
    display: block;
    margin: 0 auto !important;
    width: fit-content;
    text-align: center;
    left: 0 !important;
    transform: none !important;
    position: relative !important;
}

.autoDisplay {
    transform: none !important;
    margin: 0 auto !important;
    width: 100%;
    text-align: center;
    position: relative;
    left: 0 !important;
    right: auto !important;
}
    .about-hero h1 {
        font-size: 3.2rem;
    }

    .about-hero p {
        font-size: 1.3rem;
    }

    .mission-vision {
        flex-direction: column;
        gap: 50px;
    }

    .mission-vision::before {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }


@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .mission-vision {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .services-section h2,
    .team-section h2,
    .reviews-section h2 {
        font-size: 2.2rem;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Contact Page Styles */
  .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  
  .contact-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  
  .contact-header .section-title {
    display: block;
    margin: 0 auto !important;
    width: fit-content;
    text-align: center;
    left: 0 !important;
    transform: none !important;
    position: relative !important;
  }

  .autoDisplay {
    transform: none !important;
    margin: 0 auto !important;
    width: 100%;
    text-align: center;
    position: relative;
    left: 0 !important;
    right: auto !important;
  }


.contact-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin-top: 100px;
    padding: 40px;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(114, 161, 222, 0.2);
}

.contact-info {
    flex: 1;
    padding: 20px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #72a1dea2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item i {
    font-size: 2rem;
    color: #72a1dea2;
}

.contact-item h3 {
    margin: 0;
    color: #fff;
}

.contact-item p {
    margin: 5px 0 0;
    color: #72a1dea2;
}

.contact-form {
    flex: 1;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(114, 161, 222, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #72a1dea2;
    box-shadow: 0 0 10px rgba(114, 161, 222, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #72a1dea2;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(114, 161, 222, 0.8);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contact-info h1 {
        font-size: 2rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
}

html{
    scroll-behavior: smooth;
}

.container{
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #001f7c38;
}


.back-vid{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode:overlay;
}


header{
    display: flex;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.121);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px #72a1dea2;
    z-index: 999;
}

.left{
    display: flex;
    align-items: center;
}

.left img{
    width: 40px;
    margin: 0 15px;
}


header ul{
    display: flex;
    justify-content: space-between;
    width: 40%;
    padding: 15px 25px;
    border-radius: 50px;
    background-color: rgba(0, 0, 69, 0.326);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #72a1de63;
}

header ul li{
    list-style: none;
    margin: 0 10px;
}

header ul a{
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

header ul a:hover{
    text-shadow: 0 0 15px black;
    color: #72a1de;
    background-color: rgba(255, 255, 255, 0.05);
}

header ul a.active {
    color: #72a1de;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(114, 161, 222, 0.3);
}

.box-icons{
    display: flex;
    gap: 40px;
}

.box-icons p{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid #72a1de;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.box-icons p:hover{
    background-color: #72a1de;
    color: black;
    box-shadow: 0 0 15px #72a1de;
}

.blackhole-box{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: -1;
    mix-blend-mode: lighten;
  }
  
.blackhole-box video{
    width: 100%;
    margin-top: -23.5%;
}

.hero{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    /* Ensure hero section is not affected by projects section styles */
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    box-sizing: border-box;
}

.hero-info{
    position: absolute;
    left: 5%;
}

.hero-info .hero-info-title{
    color: #72a1de;
    padding: 8px 5px;
    border-radius: 50px;
    border: 1px solid #72a1de94;
    width: 240px;
    background-color: #2200493d;
    box-shadow: 0 0 5px #72a1de84;
}

.hero-info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-info p{
    max-width: 550px;
    line-height: 25px;
    margin-bottom: 40px;
    font-size: 20px;
}

.hero-info button{
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid #72a1de81;
    background-color: #2200493d;
    box-shadow: 0 0 5px #72a1de81;
    cursor: pointer;
    transition: 0.3s;
}

.hero-info button:hover{
    box-shadow: 0 0 15px #72a1de81;
}

/* Gradient Animation */
.gradient{
    background: linear-gradient(to right,#00aaa7, #7e42a7, #6600c5, #6070fd,#2a46ff, #0099ff, #008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}
@keyframes animate-gradient {
    to{
        background-position: 200%;
    }
}

.skills-video-box{
    position: absolute;
    right: 3%;
}

.skills-video{
    height: 900px;
    mix-blend-mode:lighten;
}


.scroll-down {
    height: 50px;
    width: 30px;
    border: 2px solid lightgray;
    position: absolute;
    left: 49%;
    bottom: 8%;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.626);
  }
  .scroll-down::before,
  .scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid lightgray;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;
  }
  .scroll-down::before {
    top: 30%;
    animation-delay: 0.5s;
    /* animation: scroll-down 1s ease-in-out infinite; */
  }
  
  @keyframes scroll-down {
    0% {
      /* top:20%; */
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      top: 90%;
      opacity: 0;
    }
  }




.info-section{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin-top: 40px;
    padding: 20px 0;
}

.section-title{
    font-size: 40px;
    font-weight: 700;
}

.info-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
    justify-items: center;
    
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 300px;
    height: 60vh;
    overflow: hidden;
    border: 1px solid gray;
    background-color: #080020b7;
    border-radius: 20px;
    transition: 0.5s;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.card h1{
    margin: 15px 0 15px 0;
    font-size: 25px;
    z-index: 1;
    color: lightgray;
    line-height: 1.2;
    order: 2;
}

.card p{
    z-index: 1;
    max-width: 100%;
    color: gray;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 15px 0;
    flex-grow: 1;
    order: 3;
}

.card img{
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    margin: 0 0 15px 0;
    border-radius: 8px;
    order: 1;
}

.card video{
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    mix-blend-mode: lighten;
    margin: 0 0 15px 0;
    border-radius: 8px;
    order: 1;
}

.card button{
    padding: 10px 25px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgray;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    align-self: center;
    order: 4;
}

.card button:hover{
    box-shadow: 0 0 15px lightgray;
    opacity: 0.7;
}

.card:hover{
    box-shadow: 0 0 15px rgb(211, 211, 211);
}

.card:nth-child(3){
    grid-row: span 2;
    height: 83vh;
}

.card:nth-child(3) p{
    bottom: 12%;
}

.card:nth-child(3) h1{
    bottom: 21%;
}

.card:nth-child(4){
    grid-column: span 2;
}

.card:nth-child(4) p{
    max-width: 650px;
}

.card:nth-child(4) h1{
    bottom: 35%;
}

/* Team Section */
.team-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 100px auto;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 50px;
}

.team-member{
    background-color: #080020b7;
    border: 1px solid #72a1de63;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(114, 161, 222, 0.3);
}

.member-image{
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #72a1de;
    position: relative;
}

.member-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img{
    transform: scale(1.1);
}

/* CEO specific styling for larger image */
.ceo-member .member-image{
    width: 200px;
    height: 200px;
    border: 5px solid #72a1de;
    box-shadow: 0 0 25px rgba(114, 161, 222, 0.4);
    background: linear-gradient(135deg, #72a1de, #5a8bc7);
    padding: 4px;
}

.ceo-member .member-image img{
    border-radius: 50%;
    border: 2px solid white;
}

.ceo-member:hover .member-image{
    box-shadow: 0 0 30px rgba(114, 161, 222, 0.6);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Expert team member styling to match CEO image size */
.expert-team-member .member-image{
    width: 200px;
    height: 200px;
    border: 5px solid #72a1de;
    box-shadow: 0 0 25px rgba(114, 161, 222, 0.4);
    background: linear-gradient(135deg, #72a1de, #5a8bc7);
    padding: 4px;
}

.expert-team-member .member-image img{
    border-radius: 50%;
    border: 2px solid white;
}

.expert-team-member:hover .member-image{
    box-shadow: 0 0 30px rgba(114, 161, 222, 0.6);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.member-info h3{
    color: lightgray;
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.member-info .role{
    color: #72a1de;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info .description{
    color: gray;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.social-links{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(114, 161, 222, 0.1);
    border: 1px solid #72a1de;
    border-radius: 50%;
    color: #72a1de;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover{
    background-color: #72a1de;
    color: white;
    transform: scale(1.1);
}

.my-project{
    display: flex;
    flex-direction: column;
    gap: 10%;
    align-items: center;
    position: relative;
    width: 80%;
    height: 100vh;
    margin-top: 200px;
    margin-bottom: 700px;
}

.project-card {
    display: flex;
    width: 100%;
    height: 40%;
    align-items: center;
    gap: 10%;
    justify-content: center;
}

.project-vidbox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    mix-blend-mode:exclusion;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    min-width: 400px;

}

.project-vidbox video{
    object-fit: cover;
    width: 100%;
    box-shadow: 0 0 10px lightgray;
    border-radius: 20px;
    transition: 0.5s;
}

.project-card video:hover{
    box-shadow: 0 0 25px rgb(255, 255, 255);
}

.project-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 50%;
    padding-left: 10%;
}

.project-info h1{
    width: 90%;
    font-size: 25px;
    font-weight: bold;
    text-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 450px;
}

.project-info p{
    width: 90%;
    max-width: 400px;
    min-width: 300px;
    margin-bottom: 50px;
    margin-top: 0;
}

.project-info button{
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid #72a1de81;
    background-color: #2200493d;
    box-shadow: 0 0 5px #72a1de81;
    cursor: pointer;
    transition: 0.3s;
}

.project-info button:hover{
    opacity: 0.8;
    box-shadow: 0 0 15px #72a1de81;
}

.project-vidbox .hover-sign{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100px;
}

.hover-sign::before,
.hover-sign::after {
    content: "👆";
    text-align: center;
    position: absolute;
    font-size: 50px;
    top: 20%;
    left: 40%;
    border-radius: 40px;
    animation: hover-animation 4s ease-in-out infinite;

}

.hover-sign.active{
    display: none;
}

@keyframes hover-animation {
  0% {
    /* top:20%; */
    box-shadow: 0 0 5px rgb(255, 255, 255);
    transform: translate(100%, 50%) rotate(30deg);
  }

  100% {
    box-shadow: 0 0 5px rgb(255, 255, 255);
    transform: translateX(80%, 80%) rotate(20deg);
  }
}




/* Skills section */
.skills-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.skills-box{
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    mix-blend-mode:lighten;
    opacity: 0.7;
}

.skills-image{
    width: 70%;
    mix-blend-mode:difference;
}

.Designer{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    top: 25%;
    left: 5%;
    max-width: 300px;
}

.Designer h1{
    font-size: 50px;
    display: flex;
    align-items: center;
}

.Designer p{
    line-height: 23px;
}


.coder{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    top: 25%;
    right: 5%;
    max-width: 300px;
}

.coder h1{
    font-size: 50px;
    display: flex;
    align-items: center;
}

.coder p{
    line-height: 23px;
}



.coder-text{

    font-size: 50px;
}

/* SLIDER  */

.slider{
    position: absolute;
    bottom: 5%;
    right: 20%;
    width: 60%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
    mix-blend-mode:difference;
    opacity: 0.7;
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}


  /* CONTACT SECTION */
.contact-section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 0;
    background-color: rgba(0, 0, 50, 0.1);
    z-index: 2;
}

.contact-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 300px;
}

.social-box a{
    color: lightgray;
    text-decoration: none;
    font-size: 20px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.social-box a:hover {
    color: #72a1de;
}

.social-box i{
    color: #72a1de;
    font-size: 30px;
    margin-right: 15px;
    min-width: 40px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a i{
    color: white;
    font-size: 25px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #72a1de;
}

.contact-box {
    min-width: 400px;
    max-width: 500px;
}

.contact-box p{
    color: lightgray;
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
} 

.contact-box input{
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    border: 1px solid rgba(114, 161, 222, 0.3);
    outline: none;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.contact-box input:focus {
    border-color: #72a1de;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-box textarea {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    border: 1px solid rgba(114, 161, 222, 0.3);
    outline: none;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    resize: vertical;
    min-height: 100px;
}

.contact-box textarea:focus {
    border-color: #72a1de;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-box .input-message {
    min-height: 100px;
    resize: vertical;
    padding-top: 15px;
}

.contact-box button{
    margin-top: 25px;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    border: 1px solid #72a1de;
    background-color: rgba(114, 161, 222, 0.2);
    box-shadow: 0 2px 10px rgba(114, 161, 222, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.contact-box button:hover{
    background-color: rgba(114, 161, 222, 0.3);
    box-shadow: 0 4px 20px rgba(114, 161, 222, 0.4);
    transform: translateY(-2px);
}

/* Desktop Contact Section Responsive Styles */
@media (max-width: 1200px) {
    .contact-content {
        gap: 5%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .social-box {
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }
    
    .contact-box {
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .social-box a {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .social-box i {
        font-size: 25px;
        margin-right: 12px;
    }
    
    .contact-box input,
    .contact-box textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contact-box button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 20px 10px;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .social-box a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .social-box i {
        font-size: 22px;
        margin-right: 10px;
    }
    
    .contact-box input,
    .contact-box textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .contact-box button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Center-align hero content on mobile */
@media (max-width: 600px) {
  .hero h1,
  .hero p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Latest Projects Section Grid Styles */
.projects-section.full-width {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.projects-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1100px;
  justify-items: center;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 380px;
  min-height: 520px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(114, 161, 222, 0.3);
}

.project-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.project-thumbnail img,
.project-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-thumbnail img,
.project-card:hover .project-thumbnail video {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project-btn {
  background: #72a1de;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.view-project-btn:hover {
  background: #5a8bc4;
  transform: scale(1.05);
}

.project-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.project-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.project-tech span {
  background: rgba(114, 161, 222, 0.2);
  color: #72a1de;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(114, 161, 222, 0.3);
}

.projects-cta {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #72a1de, #5a8bc4);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(114, 161, 222, 0.4);
}

/* Mobile responsive grid */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px auto;
    padding: 0 15px;
  }
  
  .project-card {
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .projects-section.full-width {
    padding: 60px 0;
    text-align: center;
    background: #0a0a23;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  
  .projects-section-inner {
    padding: 0;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .projects-grid {
    gap: 25px;
    margin: 30px auto;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
  }
  
  .project-card {
    background: rgba(30, 30, 60, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    min-height: 520px;
    width: 300px;
    max-width: calc(100vw - 40px);
    margin: 0 auto 25px auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    align-self: center;
    overflow: hidden;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(114, 161, 222, 0.4);
  }
  
  .project-thumbnail {
    height: 180px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    width: 100%;
    display: block;
    flex-shrink: 0;
  }
  
  .project-thumbnail img,
  .project-thumbnail video {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .project-info {
    padding: 25px 20px;
    min-height: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    font-size: medium;
    flex-grow: 1;
  }
  
  .project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .project-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center !important;
    margin-bottom: 20px;
    width: 100%;
    display: block;
    padding: 0 10px;
    box-sizing: border-box;
    flex-grow: 1;
    margin-left: auto;
    margin-right: auto;
  }
  
  .project-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
  }
  
  .project-tech span {
    background: rgba(114, 161, 222, 0.3);
    color: #72a1de;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(114, 161, 222, 0.5);
  }
  
  .section-title {
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 70px;
    background-color: rgba(255, 255, 255, 0.121);
    z-index: 999;
    padding: 20px 3rem;
    margin-top: 80px;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.footer h1 {
    font-size: 1.2rem;
    font-weight: 500;
}

.footer .box-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .box-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #72a1de;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .box-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}


/* BLUR EFFECT ANIMAION */

.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();

}
@keyframes autoBlurAnimation{
    0%{
        filter: blur(40px);
    }
    35%,65%{
        filter: blur(0);
        opacity: 1;
    }
    100%{
        filter: blur(40px);
        opacity: 0;
    }
}


/* AUTO DISPLAY ANIMAION */
.autoDisplay{
    animation: autoDisplayAnimation both;
    animation-timeline: view();

}

@keyframes autoDisplayAnimation{
    from{
        filter: blur(10px);
        transform: translateY(-200px) scale(0);
    } 50%{
        opacity: 1;
        filter: blur(0px);
        transform: translateX(0) scale(1);
    }
}


/* FADEIN_LEFT */

.fadein-left{
    animation: fadeInLeftAnimation both;
    animation-timeline: view();
}

@keyframes fadeInLeftAnimation{
    0%{
        opacity: 0;
        transform: translateX(-500px) scale(0.2);
        filter: blur(10px);
    } 35%,65%{
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0px);
    }100%{
        filter: blur(10px);
    }
}

/* Sidebar */

.menu-icon{
    font-size: 35px;
    cursor: pointer;
    display: none;
}


.sidebar{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 70%;
    width: 0%;
    background-color: #000000b8;
    z-index: 999;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.479);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-bottom-left-radius: 100%;
    
}

.close-icon{
    font-size: 50px;
    color: lightgray;
    padding-left: 10px;
    cursor: pointer;
}

.sidebar ul{
    padding-left: 20px;
}

.sidebar ul li{
    list-style: none;
    margin-bottom: 30px;
}

.sidebar ul li a{
    text-decoration: none;
    color: lightgray;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 0 15px #4c4c4c;
}

.sidebar ul li a:hover {
    color: #72a1de;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.social-sidebar{
    padding-left: 20px;
    margin-top: 60px;
    text-wrap: nowrap;
}

.social-sidebar a{
    font-size: 35px;
    padding: 5px 5px;
    cursor: pointer;
    transition: 0.5s;
}

/* Sidebar Open ANimation */
.sidebar.open-sidebar{
    animation: openSideBarAnimation 1.5s forwards;
}

@keyframes openSideBarAnimation {
    to{
        width: 80%;
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
}

/* Sidebar close ANimation */

.sidebar.close-sidebar{
    animation: closeSideBarAnimation 1.5s forwards;
}

@keyframes closeSideBarAnimation {
    from{
        width: 80%;
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
    to{
        width: 0;
        opacity: 0;
        bottom: 70%;
        border-bottom-left-radius: 50%;
    }
}






@media (max-aspect-ratio: 16/9){
    .back-vid{
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9){
    .back-vid{
        width: 100%;
        height: auto;
    }
}


@media screen and (max-width: 1200px){
    .blackhole-box video{
        margin-top: -20%;
    }

    .hero-info h1{
        font-size: 40px;
        max-width: 400px;
        line-height: 40px;
    }

    .hero-info P{
        max-width: 300px;
    }

    .skills-video-box{
        right: 0%;
    }

    .skills-video-box video{
        height: 500px;
    }

    .info-cards{
        grid-template-columns: auto;
    }

    .card:nth-child(3){
        grid-column: span 2;
        height: 70vh;
    }

    .info-cards .card h1{
        font-size: 20px;
    }

    .info-cards .card:nth-child(3) h1{
        bottom: 25%;
    }

    .card video{
        height: 60%;

        margin-top: 5%;
    }

    .my-project{
        margin-bottom: 200px;
        scale: 0.8;
    }

    .contact-section .section-title {
        left: 30%;
    }
}

@media screen and (max-width: 1100px) {
    header ul {
        width: 50%;
    }
}

@media screen and (max-width: 900px) {
    header ul {
        width: 60%;
    }
}

@media screen and (max-width: 700px) {
    header{
        position: fixed;
        height: 50px;
    }

    header ul{
        display: none;
    }

    header .box-icons{
        display: none;
    }

    .menu-icon{
        display: inline;
    }

    .blackhole-box video {
        width: 100%;
        margin-top: -15%;
    }

    .autoBlur{
        animation: none;
    }
    
    .hero{
        flex-direction: column;
        top:0;
        bottom: 0;
        left: 0;
        right:0;
        
    }
    .hero-info{
        bottom: 5%;
    }

    .scroll-down{
        bottom: 5%;
    }

    .hero .skills-video-box{
        height: 200px;
        top: 5%;
    }

    .info-cards{
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }

    .card:nth-child(3){
        height: auto;
    }

    .card video{
        width: 100%;
    }

    .team-section{
        width: 95%;
        margin: 60px auto;
    }

    .team-grid{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .team-member{
        padding: 25px 15px;
    }

    .member-image{
        width: 140px;
        height: 140px;
    }

    .ceo-member .member-image{
        width: 200px;
        height: 200px;
        box-shadow: 0 0 18px rgba(114, 161, 222, 0.4);
    }

    .expert-team-member .member-image{
        width: 200px;
        height: 200px;
        box-shadow: 0 0 18px rgba(114, 161, 222, 0.4);
    }
    
    .container{
        height: 100%;
    }

    .project-vidbox video{
        width: 250px;
        margin-left: -100px;
    }

    .project-info{
        overflow: hidden;
        padding-left: 0;
        margin-left: -50px;
    }

    .project-info h1{
        font-size: 20px;
        max-width: 200px;
        text-wrap: wrap;
    }

    .project-info p{
        font-size: 10px;
        text-wrap: wrap;
        max-width: 200px;
        min-width: 0;
    }

    .project-info button{
        padding: 5px 10px;
    }

    .my-project {
        margin-bottom: 40px;
        padding: 20px 0;
    }

    .project-card {
        flex-direction: column;
        margin-left: 25%;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .project-vidbox{
        min-width: 200px;
    }

    .project-info{
        width: 85%;
    }

    .project-info h1{
        text-wrap: nowrap;
    }

    .project-info p{
        max-width: 300px;
    }

    .Designer{
        top: 15%;
        left: 18%;
    }

    .Designer h1{
        margin-bottom: 0;
        margin-top: 70px;
    }

    .coder{
        top: 50%;
        left: 18%;
    }

    .coder h1{
        margin-bottom: 0;
    }

    .slider .list .item img{
        width: 70%;
    }

    .contact-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        box-sizing: border-box;
        gap: 40px;
        position: relative;
        text-align: center;
    }

    .contact-header {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 20px 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-header .section-title {
        margin: 0;
        padding: 15px 30px;
        text-align: center;
        width: auto;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        position: relative;
        z-index: 2;
    }

    .social-box, .contact-box {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        padding: 30px;
        box-sizing: border-box;
    }

    @media screen and (min-width: 768px) {
        .contact-section {
            gap: 50px;
        }

        .social-box, .contact-box {
            padding: 40px;
            margin: 10px auto;
            backdrop-filter: blur(5px);
        }

        .contact-box {
            margin-bottom: 30px;
        }
    }

    .skills-section {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    @media screen and (max-width: 480px) {
        .container {
            gap: 15px;
        }

        .contact-section {
            margin: 20px auto;
            padding: 20px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .contact-header {
            margin: 15px 0 25px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .contact-header .section-title {
            font-size: 22px;
            padding: 12px 25px;
            margin-bottom: 15px;
            text-align: center;
            width: auto;
            display: inline-block;
        }

        .social-box, .contact-box {
            margin: 10px auto;
            padding: 20px 15px;
            width: 90%;
            max-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

    .social-box a {
        display: flex;
        align-items: center;
        width: 100%;
        text-decoration: none;
        color: lightgray;
        padding: 12px 20px;
        margin: 5px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .social-box a i {
        margin-right: 15px;
        font-size: 1.2em;
        color: #72a1de;
    }

    .social-box a:hover {
        background: rgba(114, 161, 222, 0.1);
        color: white;
    }

    .social-box .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(114, 161, 222, 0.2);
    }

    .social-box .social-icons a {
        width: auto;
        padding: 10px;
        margin: 0;
    }

    .social-box .social-icons a i {
        margin: 0;
        font-size: 1.4em;
    }

    @media screen and (min-width: 768px) {
        .social-box a {
            padding: 15px 25px;
            font-size: 16px;
        }

        .social-box a i {
            font-size: 1.4em;
        }

        .social-box .social-icons {
            gap: 30px;
            margin-top: 30px;
            padding-top: 30px;
        }

        .social-box .social-icons a {
            padding: 12px;
        }

        .social-box .social-icons a i {
            font-size: 1.6em;
        }
    }        .contact-box {
            text-align: center;
        }

        .contact-box input {
            text-align: center;
            width: 100%;
            max-width: 280px;
        }

        .contact-box button {
            margin: 0 auto;
            display: block;
        }

        .info-section,
        .team-section,
        .my-project,
        .skills-section {
            padding: 20px 0;
            margin: 15px 0;
            text-align: center;
        }

        .section-title {
            font-size: 22px;
            margin: 20px auto;
            padding: 12px 20px;
            text-align: center;
            display: inline-block;
        }

        .contact-box input {
            padding: 10px;
            font-size: 14px;
        }

        .contact-box .input-message {
            min-height: 80px;
        }

        .contact-box button {
            width: 100%;
            padding: 12px;
            font-size: 14px;
        }
    }    .social-box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 25px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 15px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
    }

    .social-box a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: lightgray;
        transition: 0.3s;
    }

    .social-box .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .social-box a:hover {
        color: #72a1de;
    }

    .footer {
        font-size: 10px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {

    .hero .skills-video-box {
        display: none;
        
    }

    .blackhole-box {
        overflow: hidden;
    }

    .blackhole-box video {
        width: 140%;
        margin-top: -27%;

    }

    .left {
        scale: 0.9;
        margin-left: -30px;
    }

    .left h2 {
        font-size: 20px;
    }

    .hero {
        scale: 0.9;
    }

    .hero-info{
        bottom: 15%;
    }

    .hero-info h1{
        font-size: 35px;
    }

    .scroll-down{
        bottom: 15%;
        left: 60%;
    }

    .section-title {
        font-size: 25px;
        margin: 30px 0;
        padding: 10px;
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        width: fit-content;
    }

    .info-cards{
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 0 15px;
        align-items: center;
    }

    .card {
        min-height: 280px;
        height: auto;
        width: 100%;
        max-width: 400px;
        padding: 25px 20px;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .card h1{
        position: static;
        font-size: 20px;
        margin: 15px 0 18px 0;
        color: lightgray;
        width: 100%;
        text-align: center;
        line-height: 1.3;
        order: 2;
    }

    .card p{
        position: static;
        font-size: 15px;
        color: gray;
        line-height: 22px;
        margin: 0 0 20px 0;
        max-width: 100%;
        width: 100%;
        order: 3;
    }

    .card img, .card video{
        position: static;
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
        margin: 0 0 15px 0;
        border-radius: 8px;
        order: 1;
    }

    .card button{
        position: static;
        margin-top: 18px;
        padding: 12px 28px;
        font-size: 14px;
        order: 4;
    }

    .team-section{
        width: 100%;
        margin: 40px auto;
        padding: 0 15px;
    }

    .team-grid{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .team-member{
        padding: 20px 15px;
    }

    .member-image{
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .ceo-member .member-image{
        width: 170px;
        height: 170px;
        box-shadow: 0 0 15px rgba(114, 161, 222, 0.4);
    }

    .expert-team-member .member-image{
        width: 170px;
        height: 170px;
        box-shadow: 0 0 15px rgba(114, 161, 222, 0.4);
    }

    .member-info h3{
        font-size: 20px;
    }

    .member-info .role{
        font-size: 14px;
    }

    .member-info .description{
        font-size: 13px;
    }

    .social-links a{
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .project-card {
        height: 50%;
    }

    .project-info p{
        margin-bottom: 15px;
    }

    .project-info{
        margin-left: -80px;
    }

   }

.skills-box{
    height: 120vh;
    margin-right: 30px;
}

.slider{
    bottom: 0%;
}

.contact-section {
    height: auto;
    padding: 60px 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-box {
    width: 100%;
    max-width: 320px;
    margin: 30px auto 0;
    padding: 25px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.contact-box input {
    width: 100%;
    box-sizing: border-box;
    margin: 8px auto 20px;
    text-align: center;
    display: block;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(114, 161, 222, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
}

.contact-box p {
    margin: 0;
    color: #72a1de;
    text-align: left;
    width: 100%;
    font-size: 0.9em;
    margin-top: 15px;
}

.contact-box .input-message {
    min-height: 120px;
    margin-bottom: 25px;
    text-align: left;
    resize: vertical;
}

.contact-box button {
    margin: 10px auto 0;
    display: block;
    padding: 12px 30px;
    background: rgba(114, 161, 222, 0.2);
    border: 1px solid rgba(114, 161, 222, 0.5);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-box button:hover {
    background: rgba(114, 161, 222, 0.3);
    transform: translateY(-2px);
}

@media screen and (min-width: 768px) {
    .contact-box input {
        padding: 15px 20px;
        font-size: 16px;
    }

    .contact-box p {
        font-size: 1em;
        margin-top: 20px;
    }

    .contact-box .input-message {
        min-height: 150px;
    }

    .contact-box button {
        padding: 15px 40px;
        font-size: 16px;
    }
}

.contact-section .section-title {
    position: relative;
    margin: 0 0 40px;
    text-align: center;
}

.footer{
    padding: 20px 15px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.footer h1{
    max-width: 100%;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.footer .box-icons{
    gap: 15px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 600px) {
    .hero h1,
    .hero p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}