/* ————————— Global Box-Sizing ————————— */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ————————— Base Styles ————————— */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
}

html {
    scroll-behavior: smooth;
}

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

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

header {
    display: flex;
    position: absolute;
    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: 30%;
    padding: 15px 15px;
    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;
}

header ul a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s;
    margin: 0 10px;
}

header ul a:hover {
    text-shadow: 0 0 15px black;
}

.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;
}

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

.hero-info .hero-info-title {
    color: #72a1de;
    padding: 8px 5px;
    border-radius: 50px;
    border: 1px solid #72a1de94;
    width: 540px;
    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-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.hero-info button:hover {
    box-shadow: 0 0 15px #72a1de81;
}
/* ------------------------------
   Improved Hero Title Styles
   ------------------------------ */

.hero-info-title-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 28rem;
  margin-bottom: 1rem;
}

.hero-info-title-modern .icon {
  font-size: 1.6rem;
  color: #00e4ff;
}

.hero-info-title-modern h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  background: linear-gradient(90deg, #00e4ff, #6096ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

/* subtle gradient animation */
@keyframes gradientShift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

/* Responsive scaling */
@media (max-width: 768px) {
  .hero-info-title-modern {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .hero-info-title-modern h2 {
    font-size: 1rem;
  }
  .hero-info-title-modern .icon {
    font-size: 1.3rem;
  }
}

/* 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%;
    }
}

/* AUTO DISPLAY ANIMATION */
.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);
    }
}

/* ——— AOS Overrides ——— */
[data-aos][data-aos][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}


.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;
}
@keyframes scroll-down {
    0% { 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: 100px;
}

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

.info-cards {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid gray;
    background-color: #080020b7;
    border-radius: 20px;
    transition: 0.5s;
}

.card h1 {
    position: absolute;
    margin: 0;
    bottom: 40%;
    left: 5%;
    font-size: 25px;
    z-index: 1;
    color: lightgray;
}

.card p {
    position: absolute;
    bottom: 3%;
    left: 5%;
    z-index: 1;
    max-width: 300px;
    color: rgba(230, 218, 218, 0.836);
    font-size: 13px;
    line-height: 20px;
}

.card img {
    width: 80%;
    height: 50%;
    object-fit: cover;
}

.card video {
    margin-top: 10%;
    width: 70%;
    height: 50%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.card button {
    position: absolute;
    bottom: 5%;
    left: 5%;
    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;
}

.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%;
}

.rate-btn {
    display: inline-block;
    background-color: #2200493d;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #72a1de81;
    box-shadow: 0 0 5px #72a1de81;
    text-decoration: none;
    transition: 0.3s;
}

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

/* ————— Updated Project Section ————— */
.my-project {
    display: flex;
    flex-direction: column;
    gap: 10%;
    align-items: center;
    position: relative;
    width: 80%;
    height: auto;
    margin-top: 200px;
    margin-bottom: 50px;
}

.project-card {
    display: flex;
    width: 100%;
    height: auto;
    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 removed */
}

.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;
}

/* … rest of your desktop CSS remains unchanged … */

/* ————— Mobile Overrides ————— */
@media screen and (max-width: 700px) {
  /* tighten up container spacing */
  .container {
    gap: 40px;
    padding: 0 10px;
  }

  /* make header sticky */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .container {
    padding-top: 70px;
  }

  /* project section fluid */
  .my-project {
    margin: 200px auto 50px;
    width: 90%;
  }
  .project-card {
    flex-direction: column;
    margin: 0 auto;
    gap: 20px;
    height: auto;
  }
  .project-vidbox {
    width: 100%;
    margin: 0;
  }
  .project-vidbox video {
    width: 100%;
  }
  .project-info {
    width: 100%;
    padding: 0 10px;
    overflow: visible;
    margin: 0;
  }
  .project-info h1 {
    font-size: 1.5rem;
    max-width: none;
  }
  .project-info p {
    font-size: 0.875rem;
  }

  /* collapse other sections */
  .info-cards,
  .contact-section,
  .skills-box {
    width: 90%;
    margin: 0 auto;
  }

  /* hide nav links on mobile */
  header ul,
  .box-icons {
    display: none;
  }
  .menu-icon {
    display: inline;
  }
  
  /* any other mobile tweaks… */
}

/* ————— Remaining Media Queries (1200px, 480px…) ————— */
/* Copy your existing @media screen and (max-width: 1200px) and (max-width: 480px) blocks here unmodified */



.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);
  }
}



/* ── Globe + Description Layout ── */
.globe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 80%;
  margin: 60px auto;
  flex-wrap: wrap;
}

.globe-desc {
  flex: 1;
  max-width: 500px;
  color: #fff;
  text-align: left;
}

.gradient-text {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00aaa7, #2a46ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.globe-desc p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-globe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #72a1de;
  color: #0f1217;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-globe:hover {
  background-color: #4a89c7;
  transform: translateY(-2px);
}

.globe-media {
  flex: 1;
  max-width: 600px;
  background: transparent !important;
}

.globe-media video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* ── Responsive ── */
@media screen and (max-width: 700px) {
  .globe-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
    margin: 40px auto;
  }
  .gradient-text {
    font-size: 1.8rem;
    text-align: center;
  }
  .globe-desc p {
    font-size: 0.95rem;
    text-align: center;
  }
  .btn-globe {
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
}
/* ── Feature Spotlight Styles ── */
.feature-spotlight .feature-wrapper {
  /* same as .globe-wrapper */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 80%;
  max-width: 1200px;
  margin: 60px auto;
  flex-wrap: wrap;
}
.feature-media {
  flex: 1;
  max-width: 500px;
}
.feature-spotlight .feature-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}
.feature-desc {
  flex: 1;
  max-width: 600px;
  color: #fff;
}
.feature-desc h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  background: linear-gradient(to right, #00aaa7, #2a46ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-desc p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #72a1de;
  color: #0f1217;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-feature:hover {
  background-color: #4a89c7;
  transform: translateY(-2px);
}

/* ── Mobile Responsive ── */
@media screen and (max-width: 700px) {
  .feature-spotlight .feature-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
    margin: 40px auto;
  }
  .feature-desc h2 {
    text-align: center;
  }
  .feature-desc p {
    text-align: center;
  }
  .btn-feature {
    width: 100%;
    justify-content: center;
  }
}




/* 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: 80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    position: relative;
}

.contact-section h1{
    position: absolute;
    top: 10%;
    left: 40%;
}

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

.social-box a{
    color: lightgray;
    text-decoration: none;
    font-size: 20px;
    text-wrap: nowrap;
}

.social-box i{
    color: #7668ff;
    font-size: 30px;
    margin-right: 10px;
}

.social-icons a i{
    color: white;
    margin-top: 40px;
}

.contact-box p{
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 5px;
} 

.contact-box input{
    padding: 7.5px 30px;
    background-color: lightgray;
    width: 80%;
    height: 25px;
    border: none;
    outline : none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.contact-box button{
    margin-top: 30px;
    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;
}

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



/* 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: 30px;
    font-weight: 900;
    text-shadow:0 0 15px #4c4c4c;
}

.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%;
    }
}


/* grid wrapper */
.about-us-features__grid {
  display: grid;
  /* two columns, each exactly 300px */
  grid-template-columns: repeat(2, 380px);
  gap: 20px;
  margin: 40px 0;
  margin-left: 2%;
}


/* base card */
.about-us-features__card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
}

/* background colors */
.about-us-features__card--grey {
  background: #2222437f;
}
.about-us-features__card--blue {
  background: #2222437f;
}

/* icon */
.about-us-features__icon {
  font-size: 36px;
  line-height: 1;
}

/* title */
.about-us-features__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fcfdfd;
}

/* text */
.about-us-features__text {
  margin: 0;
  font-size: 16px;
  color: #f8f9fb;
}
/* define the glow animation */
@keyframes auto-glow {
  from {
    box-shadow: 
      0 0 8px rgba(255,255,255,0.2),
      0 0 20px rgba(255,255,255,0.1);
  }
  to {
    box-shadow: 
      0 0 16px rgba(255,255,255,0.6),
      0 0 30px rgba(255,255,255,0.4);
  }
}

/* define the floating animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* apply both animations to all cards */
.about-us-features__card {
  /* existing styles… */
  transition: none; /* turn off hover-only transition */
  animation: 
    auto-glow 3s ease-in-out infinite alternate,
    float     4s ease-in-out    infinite;
}





.about-banner {
  background: linear-gradient(135deg, #04193bc4, #0f172a);
  color: #fff;
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-banner__container {
  max-width: 100%;
  width: 100%;
}

.about-banner__text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.about-banner__text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-banner__text h3 {
  margin-top: 30px;
  font-size: 24px;
  border-bottom: 2px solid #4ade80;
  display: inline-block;
  padding-bottom: 6px;
}

.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.value-card {
  background: #26366b6c;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

.value-card i {
  font-size: 32px;
  color: #4ade80;
}

.value-card h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.4;
}







.testimonial-banner {
  background-image: url('/images/testimonial-banner.png'); /* replace with actual relative path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  position: relative;
}

.testimonial-banner .overlay-text p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-banner .highlight {
  background: linear-gradient(to right, #00f, #0ff, rgb(207, 30, 133), #90f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 24px;
}


.testimonials-section {
  padding: 60px 20px;
  background: #f9fafb00;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fdfafa00;
}

.testimonials-section h2 {
  font-size: 2.25rem;
  color: #0057b300;
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-section .lead {
  text-align: center;
  color: #fdfcfcfd;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

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

.testimonial-card {
  background: #1923727d;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .stars {
  color: #f6b800;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.testimonial-card .testimonial-text {
  font-style: italic;
  color: #fdfdfd;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.author-info h3 {
  font-size: 1rem;
  margin: 0;
  color: #fafafa;
}

.author-info span {
  display: block;
  font-size: 0.875rem;
  color: #718096;
}
/* Strip out the blue box behind testimonials */
.blue-overlay,
.testimonials-section {
  background-color: transparent !important;
  background-image: none        !important;
}
/* 1) Remove the card’s border entirely */
.testimonial-card {
  border: none !important;
}

/* 2) Fade cards in and out */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  20%, 80% { opacity: 1; }
}

/* 1) Define the glow pulse */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(246, 184, 0, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(253, 253, 253, 0.986);
  }
}

/* 2) Apply both fade and glow to each card */
.testimonial-card {
  /* remove any existing box-shadow if you like: */
  box-shadow: none;

  /* stack fadeInOut (8s) with glowPulse (4s) */
  animation:
    fadeInOut 8s ease-in-out infinite,
    glowPulse 4s ease-in-out infinite;
}





@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: 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{
        grid-template-columns: auto;
    }

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

    .card video{
        width: 100%;
    }
    
    .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: 600px;
    }

    .project-card{
        flex-direction: column;
        margin-left: 25%;
        gap: 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{
        flex-direction: column;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .footer{
        font-size: 10px;
    }

    .social-box{
        margin-left: -90px;
    }
}

/* CSS */
/* CSS */
/* ── Pricing Cards: Equal Size & Responsive Grid ── */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px; /* optional side padding */
}

.pricing-card {
  /* force each card to fill its grid cell */
  width: 100%;
  height: 360px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* push footer/button to bottom */
  background: #14142666;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* hover effect (keep as you had it) */
.pricing-card:hover,
.pricing-card:active {
  transform: translateY(-4px);
  box-shadow:
    0 0 8px rgba(252, 253, 253, 0.6),
    0 0 16px rgba(249, 250, 250, 0.4),
    0 4px 16px rgba(252, 252, 252, 0.1);
}

/* mobile: stack single column */
@media screen and (max-width: 600px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}


.features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;                        /* push button to bottom if you add more items */
}
.features li {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;                /* ~15px */
  color: #fafbfb;
  margin-bottom: 12px;
}
.features .check {
  color: #03A9F4;
  margin-right: 8px;
  font-weight: bold;
}

.btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px 0;                     /* ~40px tall */
  background-color: #03A9F4;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn:hover {
  background-color: #0288D1;
}
/* ───────────────────────────────────────────────
   Pricing Section – mobile‑first, single source
   ─────────────────────────────────────────────── */
.pricing-section .pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

/* make cards flex‑columns and auto‑height */
.pricing-section .pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;      /* let content dictate the height */
  min-height: 360px; /* preserve your desktop min‑height */
}

/* Mobile override: always one column */
@media screen and (max-width: 600px) {
  .pricing-section .pricing-container {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .pricing-section .pricing-card {
    padding: 16px;    /* a little less padding on phones */
    min-height: 0;    /* let them shrink if content is short */
  }
}







 .modern-contact-section {
    padding: 60px 30px;
    background: #f9fafb00;
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-header .badge {
    display: inline-block;
    background: #e0ecff00;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 15px;
    border-radius: 999px;
  }

  .contact-header h1 {
    color: #ffffff;
    font-size: 50px;
    margin: 10px 0;
  }

  .contact-header p {
    font-size: 25px;
    color: #ffffff;
  }

  .contact-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }

  .contact-info, .contact-form {
    background: rgba(255, 255, 255, 0.719);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex: 1 1 450px;
  }

  .info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #1e3a8a;
  }

  .info-box i {
    font-size: 22px;
    margin-top: 4px;
  }

  .info-box strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #111827;
  }

  .info-box p {
    margin: 0;
    font-size: 14px;
    color: #374151;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111827;
  }

  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
    font-size: 14px;
    color: #111827;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    background: #fff;
  }

  .contact-form button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .contact-form button:hover {
    background: #1d4ed8;
  }





/* ─── Pricing Section ─── */
.pricing-section {
  padding: 4rem 1rem;
  text-align: center;
}

/* Grid wrapper */

/* 1. Ensure the grid cells all stretch to the same row-height */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;        /* stretch items to fill the row */
}

/* 1. Remove the fixed-height */
.pricing-card {
  /* comment out or delete this: height: 360px; */
  height: auto;          /* let them size to their content */
  min-height: 0;         /* undo any previous min-height if set */
}

/* 2. Make cards flex-columns so CTA always sits at the bottom */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* you already have padding/backdrop/blur here */
}

/* 3. Ensure the grid row always stretches all items to same height */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;  /* key: forces every cell to match the tallest */
}


/* Card base */
.pricing-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Featured badge */
.pricing-card.featured .badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #00e4ff;
  color: #0f1217;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hover lift */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* Plan title */
.pricing-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #ffffffdd;
}

/* Price styling */
.price {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00e4ff;
}
.price .period {
  font-size: 1rem;
  font-weight: 400;
  color: #cccccc;
}

/* Trial text */
.trial {
  font-size: 0.875rem;
  color: #bbbbbb;
  margin-bottom: 1.5rem;
}

/* Features list */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #eeeeee;
}
.features .check {
  margin-right: 0.5rem;
  color: #00e4ff;
}

/* CTA button */
.btn {
  display: inline-block;
  background: #00e4ff;
  color: #0f1217;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover {
  background: #6096ff;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .section-title { font-size: 2rem !important; }
  .btn { width: 100%; }
}






.site-footer {
  background: rgba(17, 11, 105, 0.13);
  color: #f1f5f9;
  padding: 60px 30px 20px;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(4px);
  z-index: 2;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h4 {
  color: #38bdf8;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #f1f5f9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

.footer-col ul li i {
  color: #38bdf8;
  margin-right: 8px;
}

.footer-col.about h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-col.about .highlight {
  color: #38bdf8;
}

.footer-col.about p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  margin-right: 12px;
  font-size: 18px;
  color: #f1f5f9;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #38bdf8;
}

.subscribe-form {
  display: flex;
  margin-top: 10px;
}

.subscribe-form input {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 14px;
}

.subscribe-form button {
  background: #38bdf8;
  border: none;
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.subscribe-form button:hover {
  background: #0ea5e9;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #334155;
  padding-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}
.social-icons a .fa-facebook-f {
  color: #3b5998; /* Facebook Blue */
}

.social-icons a .fa-twitter {
  color: #1DA1F2; /* Twitter Blue */
}

.social-icons a .fa-instagram {
  color: #E1306C; /* Instagram Pink */
}

.social-icons a .fa-linkedin-in {
  color: #0077B5; /* LinkedIn Blue */
}
.social-icons a i:hover {
  filter: drop-shadow(0 0 5px white);
  transform: scale(1.2);
  transition: 0.3s ease;
}



/* =========================
   Mobile Responsive Styles
   ========================= */

@media screen and (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    padding: 0;
  }

  .contact-info, .contact-form {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-header h1 {
    font-size: 24px;
  }

  .contact-form h3 {
    font-size: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .info-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .info-box i {
    font-size: 18px;
  }

  .contact-info p,
  .contact-info strong {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .contact-header p {
    font-size: 14px;
  }

  .contact-grid {
    gap: 20px;
  }

  .info-box {
    flex-direction: row;
    gap: 12px;
  }

  .badge {
    font-size: 12px;
  }

  .contact-header h1 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
  }
}

/* GLOBAL SETTINGS */
html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  .modern-contact-section {
    padding: 40px 15px;
    background: #f3f4f6;
  }

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

  .contact-header h1 {
    font-size: 22px;
    color: #1e3a8a;
  }

  .contact-header p {
    font-size: 14px;
    color: #4b5563;
  }

  .contact-grid {
    flex-direction: column;
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
  }

  .info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .info-box i {
    font-size: 18px;
    color: #1e3a8a;
    margin-top: 4px;
  }

  .info-box strong {
    font-size: 15px;
    color: #111827;
  }

  .info-box p {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
  }

  .contact-form h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 15px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
  }

  .contact-form textarea {
    resize: none;
  }

  .contact-form button {
    width: 100%;
    background: #1e3a8a;
    color: white;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .contact-form button:hover {
    background: #1d4ed8;
  }
}
