* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body {
    color: white;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    position: fixed;
    width: 100%;
    z-index: 10;
    background: #0000006e;
    backdrop-filter: blur(10px);
}
.nav-right {
    display: flex;
    align-items: center;
    gap:54px; 
}
.logo a{
    font-size: 22px;
    font-weight: bold;
    margin-left: 41px;
    color:#f3f4f6; 
    text-decoration: none;
  }
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #f3f4f6 !important;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #00bfff !important;
}
.nav-icons {
    display: flex;
    gap: 18px;
}
.nav-icons a {
    color: white !important;
    font-size: 18px;
    transition: 0.3s ease;
}
.nav-icons a:hover {
    color: #00bfff !important;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 101px;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
}

/* Gradient overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(17, 24, 39, 0.769),
        rgba(17, 24, 39, 0.723)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}
.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
h1 {
    font-size: 64px;
    font-weight: bold;
}
.description {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.small-text{
  font-size:28px;
  color:#0ea5e9;
}
.buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.btn {
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.Work-btn {
    background-color: #0ea5e9;
    color: white;
    display: inline-block;
}
.Work-btn:hover {
    background-color: #07aae0df;
}
.Project-btn {
    border: 2px solid white;
    color: white;
}
.Project-btn:hover {
    background-color: rgba(32, 31, 31, 0.498);
}
@media (max-width: 768px) {
.navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 0;
}
.nav-right {
    gap: 24px;
}
.nav-links {
    flex-wrap: wrap;
    justify-content: center;
}
h1 {
    font-size: 42px;
}
.hero {
    padding: 20px;
  }
}

/*about-section*/
.about {
    padding: 80px 10%;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text,
.skills {
    flex: 1;
}

.about-text h2,
.skills h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.skill-item {
    text-align: center;
    padding: 20px;
    background: #1e293b;
    border-radius: 12px;
    transition: 0.3s ease;
}

.skill-item i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.skill-item span {
    font-size: 14px;
    color: #e2e8f0;
}

.skill-item:hover {
    transform: translateY(-8px);
    background: #334155;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*projects*/
.featured {
    padding: 88px 8%;
    background-color: #e2e8f0;
}
.section-title {
    text-align: center;
    font-size: 56px;
    margin-bottom: 60px;
    font-weight: 800;
    color: #0d1b2a;
}
.project-card {
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 25px 10px;
}
.project-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
}
.project-image img {
    width: 90%;
    border-radius: 8px;
    object-fit: cover;
}
.project-content {
    flex: 1;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    color:#000;
}
.project-content h3 {
    font-size: 30px;
    margin: -85px 10px 39px 0px;
}
.label {
    color: #6d6d6db7;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 30px;
}
.project-content p {
    font-size: 17px;
    color: #475569;
    line-height: 24px;
}
.project-card.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
.project-card,
.project-card.reverse {
    flex-direction: column;
    text-align: center;
}

.github-link {
    position: static;
    margin-top: 15px;
  }
}
/* Project4 */
.more-projects {
    padding: 80px 8%;
    background: linear-gradient(to bottom, #e9eef5, #dfe7f1);
    font-family: 'Segoe UI', sans-serif;
}
.more-title {
    font-size:56px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 35px;
}
.projects-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.project-box {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    flex: 1 1 480px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}
.project-img {
    position: relative;
}
.project-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.project-name {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #e2e8f0;
    font-size: 27px;
    font-weight: 800;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}
.project-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mini-label {
    font-size: 15px;
    letter-spacing: 2px;
    color: #cbd5e1;
    font-weight: 700;
}
.project-body p {
    color: #475569;
    line-height: 1.6;
    font-size: 16px;
}
.card-github {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.card-github img {
    width: 34px;
    transition: 0.3s;
}
.card-github img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
.more-title {
    font-size: 42px;
}
.projects-grid {
      flex-direction: column;
  }
}

/*contact*/
.contact-section {
    padding: 80px 8%;
    background: #f3f7fb;
}
.contact-title {
    font-size:56px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}
.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-group {
    position: relative;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    background: white;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    outline: none;
}
.input-group textarea {
    height: 180px;
    resize: none;
}
.char-count {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 14px;
    color: #94a3b8;
}
.row {
    display: flex;
    gap: 20px;
}
.half {
    flex: 1;
}
.captcha-box {
    width: 300px;
    height: 70px;
    background: #e5e7eb;
    border-radius: 6px;
}
.send-btn {
    width: fit-content;
    background-color: #0ea5e9;
    color: white;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(14,165,233,0.3);
    transition: 0.3s;
}
.send-btn:hover {
    transform: translateY(-2px);
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 6px;
}
.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}
.icon-box.email {
    background: #0ea5e9;
}
.icon-box.discord {
    background: #0ea5e9;
}
.info-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.info-card p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #64748b;
}
.icon-box i {
    font-size: 29px;
    color: #0ea5e9; 
}


/* RESPONSIVE */
@media (max-width: 900px) {
.contact-container {
    flex-direction: column;
}
.row {
    flex-direction: column;
}
.contact-title {
      font-size: 42px;
    }
}

/*footer*/
.footer {
    position: relative;
    background: linear-gradient(180deg, #0b1220, #070c16);
    color: #94a3b8;
    padding: 52px 20px 50px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
.footer-content {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.social-icons {
    display: flex;
    gap: 22px;
    font-size: 22px;
}
.social-icons a {
    color: #cbd5e1;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #38bdf8;
    transform: translateY(-3px);
}
.credit {
    font-size: 16px;
}
.credit span {
    color: #38bdf8;
    font-weight: 600;
}

.github-btn {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-top: 5px;
    transition: 0.3s;
}
.copyright {
    font-size: 14px;
    color: #64748b;
}
.copyright a {
    color: #94a3b8;
    text-decoration: none;
}
.copyright a:hover {
    color: #38bdf8;
}

.unsplash {
    font-size: 13px;
    color: #475569;
}

.fade-item {
    opacity: 0;
    transform: translateY(20px);
}


/*project1 css*/
.project-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    width: 100% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.project-navbar .logo a{
    color:#2e1d1f;
}
.project-navbar .nav-right .nav-links a{
    display: flex;
    gap: 25px;
    list-style: none;
    color:#2e1d1f !important;
}
.nav-links a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    transition: 0.3s;
}
.project-navbar .nav-right .nav-links a:hover {
    color: #0ea5e9 !important;
}
.nav-icons {
    display: flex;
    gap: 15px;
}
.project-navbar .nav-right .nav-icons a {
    color: #0f172a !important;
    font-size: 18px;
    transition: 0.3s;
}
.project-navbar .nav-right .nav-icons a:hover{
    color:#00bfff !important;
}
.project-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 80px 8%;
    background-color: #f3f7fb;
}
.project-hero .hero-content {
    flex: 1;
    min-width: 300px;
}
.project-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color:#2e1d1f;
}
.project-hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color:#2e1d1f;
}
.hero-buttons a {
    margin-right: 15px;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}
.btn-github {
    background-color: #1f2937;
    color: white;
}
.btn-github:hover {
    background-color: #374151;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.btn-live {
    background-color: #059669;
    color: white;
}
.btn-live:hover {
    background-color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.project-hero .hero-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.project-hero .hero-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-hero .hero-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 0;
}
h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 45px;
    position: relative;
    color:black;
}
.project-overview p{
    color:black;
    line-height: 26px;
    margin-top: 42px;
}
h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #0ea5e9;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}
.features-divider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.feature-box {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 31px;
}
.feature-box i {
    font-size: 36px;
    color: #0ea5e9;
    margin-bottom: 15px;
}
.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.tools-list,.challenges-list {
    list-style: disc;
    padding-left: 25px;
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}
.tools-list li,.challenges-list li {
    margin-bottom: 12px;
}
.back-link {
    text-align: center;
    padding: 50px 0;
}
.btn-back {
    background-color: #2563eb;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}
.btn-back:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
section {
    animation: fadeIn 1s ease forwards;
}

@media (max-width: 900px) {
.project-hero {
    flex-direction: column;
    text-align: center;
}
.project-hero .hero-images {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}
.project-hero .hero-images img {
    flex: 1 1 45%;
}
h2 {
    font-size: 28px;
    margin-left:25px;
}

.feature-box h3 {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
.project-hero .hero-images img {
        flex: 1 1 100%;
    }
}

/*design page css*/


.hero-media img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

/* PROJECT CARDS */
.project-card{
    background:#020617;
    margin:20px 8%;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.content-wrapper{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.section-title{
    font-size:28px;
    margin-bottom:20px;
    color:#fff;
}

.section-text{
    color:#94a3b8;
    line-height:1.7;
}

/* TOOLS */
.tech-list{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.tech-item{
    background:#1e293b;
    padding:10px 20px;
    border-radius:20px;
    list-style:none;
    font-size:14px;
}

/* BACK BUTTON */
.back-section{
    text-align:center;
    margin:50px;
}

.btn-back-home{
    padding:12px 30px;
    background:#38bdf8;
    color:#000;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn-back-home:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
    .project-hero-section{
        flex-direction:column;
        text-align:center;
    }
}


/*design page css*/
h3{
    font-size:30px;
    margin-bottom:20px;
    transition: 0.3s ease;

}
.design-page .navbar{
        background: linear-gradient(180deg, #0b1220, #070c16);
            width: 100%;
}
.hero-wrap {
    background: linear-gradient(to bottom, #e9eef5, #dfe7f1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 162px 8%;
    gap: 40px;
   
}
.hero-btns-design a{
    margin-top: 20px;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}
.hero-left p {
    color: #505050;
    margin-bottom: 20px;
    line-height: 28px;
   
}
.hero-btns a {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 10px;
}
.btn1 {
    background: #1e293b;
    color: #fff;
}
.btn2 {
    background: #38bdf8;
    color: #000;
}
.hero-wrap div{
    flex:1;
}
.hero-right img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}
.hero-right{
    text-align: center;
}
.hero-right iframe.ontario{
    width: 31.5vw;
    height: 20.5vw;
}
.hero-right iframe.retail{
    width: 31vw;
    height: 17.5vw;
}
.hero-right iframe{
    width: 40vw;
    height: 22.5vw;
}
.section-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 8%;
}
.section-box {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    background: #e0e8f2;
}
.section-box h3{
    margin-bottom: 15px;
    color: #0f172a;
}
.section-box p {
    color: #7a7d81;
     line-height: 27px !important;
}
.gallery-wrap {
    margin: 50px 8%;
}
.gallery-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item img {
    width: 100%;
    border-radius: 15px;
    transition: 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.section-heading-divider{
    font-size:28px;
    font-weight:600;
    color:#fff;
    position:relative;
    display:inline-block;
    margin-bottom:20px;
    letter-spacing:1px;
    line-height: 47px;
}
.section-heading-divider::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-8px;
    width:60%;
    height:3px;
    background:#38bdf8;
    border-radius:5px;
}
.tools{
    color:#0f172a !important;
    margin-bottom: 20px;
    font-size:30px;
}
.tools-wrap {
    text-align: center;
    margin: 40px;
}
.tool-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.tool-tags span {
    background: #1e293b;
    padding: 10px 20px;
    border-radius: 20px;
}
.tool-tags span{
    background:#1e293b;
    padding:10px 18px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    transition:0.3s;
}
.tool-tags span:hover{
    background:#38bdf8;
    color:#000;
}
.tool-tags i{
    font-size:16px;
}
.back-area {
    text-align: center;
    margin: 40px;
}
.back-btn {
    background: #38bdf8;
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
}
.footer-design{
    position: relative;
    background: #0e192d;
    color: #94a3b8;
    padding: 52px 20px 50px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

@media (max-width: 900px) {
.hero-wrap {
    flex-direction: column;
    text-align: center;
    padding: 192px 8% 140px 8%;
}
.section-boxes-container {
    grid-template-columns: 1fr;
}
.gallery-grid {
    grid-template-columns: 1fr;
    }
    .project-box {
        flex: 1 !important;
    }
    .logo a {
    margin-left: 0 !important;
    }
    .hero-right iframe.ontario {
    width: 84vw;
    height: 56vw;
    }
    .hero-right iframe.retail {
    width: 84vw;
        height: 47.5vw;
    }
    .btn {
    padding: 14px 15px;
    }
    .hero-right iframe {
    width: 100%;
    height: 43.5vw;
    }
}

.hidebutton{
    display: none !important;
}
