@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: hsl(0, 0%, 90%);
}

span{
   font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;  
}
header {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    background-color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 28px -8px rgba(0, 0, 0, 0.61);
    -webkit-box-shadow: 0px 4px 28px -8px rgba(0, 0, 0, 0.61);
    -moz-box-shadow: 0px 4px 28px -8px rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    gap: 1.4rem;
}

nav a {
    color: black;
    /* Animation Enhancement */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    transform: translateY(-2px);
    color: #667eea;
}

#typed-text {
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.typing-container {
    width: fit-content;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    font-family: monospace;
    font-size: 24px;
}

.text {
    display: none;
    font-size: 2rem;
    /* color: black; */
    font-family: Arial, Helvetica, sans-serif;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;
    animation: typing 2s steps(20, end), blink .5s step-end infinite alternate;
}

.text.first {
    animation-delay: 0s;
    display: inline-block;
    font-size: 2rem;
    /* color: black; */
    font-family: Arial, Helvetica, sans-serif;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.text.second {
    animation-delay: 3s;
    font-size: 2rem;
    /* color: black; */
    font-family: Arial, Helvetica, sans-serif;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.text.third {
    animation-delay: 6s;
    font-size: 2rem;
    /* color: black; */
    font-family: Arial, Helvetica, sans-serif;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: linear-gradient(45deg, #667eea, #764ba2);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}



.logo {
    color: black;
    font-size: 2rem;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    }
}

header button {
    padding: 0.8rem;
    border-radius: 17px;
    border: transparent;
    background-color: purple;
    color: white;
    visibility: collapse;
    /* Animation Enhancement */
    transition: all 0.3s ease;
}

header button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* Animation Enhancement */
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    top: 80px;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.2rem;
    color: black;
    border-bottom: 1px solid #eee;
    /* Animation Enhancement */
    transition: all 0.3s ease;
    transform: translateX(-100%);
    animation: slideInMobile 0.5s ease forwards;
}

@keyframes slideInMobile {
    to {
        transform: translateX(0);
    }
}

.mobile-nav a:hover {
    background-color: #f5f5f5;
    transform: translateX(10px);
    color: #667eea;
}

.main-call {
    display: flex;
}

.call-us {
    text-align: center;
}

.hero {
    background-color: hsl(0, 0%, 90%);
    height: 30vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 2.7rem;
    position: relative;
    top: 17vh;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.hero h1 {
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-2 {
    display: flex;
    min-height: 110vh;
    justify-content: center;
    position: relative;
    top: 15vh;
}

.hero-back-pic {
    background: url(2148972401.jpg);
    z-index: 100;
    top: 0;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -10;
    position: sticky;
    /* Animation Enhancement */
    transition: all 0.5s ease;
}

.hero-back-pic:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.hero-back {
    position: relative;
    z-index: -1000;
    width: 60%;
    height: 100vh;
}

.hero-text {
    display: flex;
    justify-content: center;
    position: relative;
    top: 22%;
    max-width: 40%;
    padding: 20px;
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.hero-text button {
    padding: 1rem 45px 20px 45px;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-text button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-text button:hover::before {
    left: 100%;
}

.hero-text button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.hero-text button:active {
    transform: translateY(-1px);
}

  .skills-section {
       display: flex;
       justify-content: space-around;
       align-items: flex-start;
       padding: 3rem 1.5rem;
       gap: 3rem;
       flex-wrap: wrap;
   }

   .skills-section>div {
       flex: 1;
       min-width: 300px;
   }

   .skills-buttons {
       position: relative;
       top: 15%;
   }

   .skills-buttons button {
       padding: 1.2rem;
       width: 100%;
       margin-bottom: 1rem;
       border-radius: 10px;
       background: rgb(0, 92, 99);
       color: white;
       border: none;
       cursor: pointer;
       transition: all 0.3s ease-in-out;
   }

   .skills-buttons button:hover {
       background-color: rgba(255, 148, 148, 0.418);
   }

   .skills-buttons span {
       visibility: collapse;
   }

   .skills-container {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
       gap: 20px;
       margin-top: 2rem;
   }

   .skills-container div {
       padding: 2rem;
       background: navajowhite;
       border-radius: 10px;
       text-align: center;
   }

   .skills-container img {
       width: 100%;
       max-width: 60px;
       height: auto;
   }

   .skills-buttons .active {
  background-color: #333;
  color: #fff;
  border-radius: 5px;
}


.Myworks {
    position: relative;
    top: 20vh;
    min-height: 100vh;
    padding: 0 1rem;
    margin-bottom: 26vh;
}

.heading {
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(224, 235, 235);
    z-index: 2;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    position: relative;
    overflow: hidden;
}

.heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-text {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    max-width: 50%;
    min-width: 300px;
    animation: slide-in-left 0.4s;
}

.hero-image {
    border: 7px solid blue;
    width: min(28rem, 80vw);
    height: min(28rem, 80vw);
    max-width: 400px;
    max-height: 400px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-image:hover {
    color: #000000;
    box-shadow: 0 0 5px #ff91006b, 0 0 25px #ffee0065, 0 0 30px #00fa2163, 0 0 90px #1968b385;
    transition: 0.5s;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-button {
    padding: 1rem;
    width: 10rem;
    border-radius: 12px;
    font-size: 1.1rem;
    background: transparent;
    color: black;
    font-weight: bold;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.hero-button:hover {
    background-color: aqua;
    color: #000000;
}

.about {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 1.5rem;
    min-height: 90vh;
    gap: 3rem;
    flex-wrap: wrap;
}

.about>div:first-child {
    flex: 1;
    min-width: 300px;
}

.about>div:last-child {
    flex: 1;
    min-width: 300px;
}


.heading2 {
    margin-top: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.work-pics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.work {
    height: 34rem;
    width: 30%;
    min-width: 510px;
    position: relative;
    top: 15vh;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.548), rgba(64, 79, 128, 0.452));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.work::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.work:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.work:hover::before {
    opacity: 1;
}

.work:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

#img-1 {
    background: url(Image3.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    height:70%;
}

#img-2 {
    background: url(Image4_000.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-3 {
    background: url(Screenshot\ 2025-06-08\ 210124.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-4 {
    background: url(Image22.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-5 {
    background: url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=400&h=300&fit=crop);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-6 {
    background: url(https://images.unsplash.com/photo-1448630360428-65456885c650?w=400&h=300&fit=crop);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-7 {
    background: url(Screenshot\ 2025-06-08\ 2001581.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
     height:70%;
}

#img-8 {
    background: url(Screenshot\ 2025-06-08\ 200349.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    height:70%;
}

#img-9 {
    background: url(WhatsApp\ Image\ 2025-06-08\ at\ 20.04.40_e5204418.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    height:70%;
}

#img-10 {
    background: url(business\ flyer.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-11 {
    background: url(Event\ flyer.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-12 {
    background: url(fad\ lan.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-13 {
    background: url(Untitled-1.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-14 {
    background: url(iphones\ flyer.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-15 {
    background: url(All\ Night\ Service\ Flyer.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

#img-16 {
    background: url(RIICH\ KID\ the\ journey.png);
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

.small-sec {
    position: relative;
    top: 50vh;
    min-height: 15vh;
    background-color: antiquewhite;
    z-index: 100;
    margin-bottom: 28%;
    padding: 2rem 1rem;
    /* Animation Enhancement */
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
}

.small-main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    top: 30%;
}

.small-main p {
    width: 50%;
    min-width: 300px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.main-side {
    display: flex;
    justify-content: space-around;
    min-height: 80vh;
    margin-bottom: 10vh;
    gap: 2rem;
    padding: 0 1rem;
}

.view {
    padding: 1.1rem;
    background: green;
    color: white;
    border-radius: 12px;
    border: 1px solid black;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #00b894, #00cec9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.view::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.view:hover::before {
    width: 300px;
    height: 300px;
}

.view:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 184, 148, 0.4);
}

.side1 {
    width: 35%;
    min-width: 300px;
    height: 70vh;
    background: url(https://images.unsplash.com/photo-1497366216548-37526070297c?w=400&h=600&fit=crop);
    background-position: center;
    background-size: cover;
    z-index: -10;
    position: sticky;
    /* Animation Enhancement */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.side1:hover {
    transform: scale(1.02);
}

.side2 {
    width: 60%;
    height: 70vh;
    background: url(https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=600&h=400&fit=crop);
    background-position: center;
    background-size: cover;
    /* Animation Enhancement */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.side2:hover {
    transform: scale(1.02);
}

.form-sec {
    display: flex;
    min-height: 120vh;
    flex-wrap: wrap;
    margin-top: 20vh;
}

.form-img {
    background: url(contact-word-with-wooden-cubes-free-photo.jpg);
    background-position: center;
    background-size: cover;
    height: 90vh;
    width: 50%;
    min-width: 300px;
    /* Animation Enhancement */
    position: relative;
    overflow: hidden;
}

.form-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-img:hover::before {
    opacity: 1;
}

form {
    height: 90vh;
    width: 50%;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.form-items p {
    width: 90%;
    min-width: 250px;
}

.form1 {
    display: flex;
    gap: 3rem;
    padding: 1.1rem;
    flex-wrap: wrap;
}

.form1>div {
    flex: 1;
    min-width: 200px;
}

input {
    padding: 2rem;
    border: none;
    border-bottom: 1px solid black;
    width: 100%;
    max-width: 400px;
    /* Animation Enhancement */
    transition: all 0.3s ease;
    background: transparent;
}

input:focus {
    outline: none;
    border-bottom: 2px solid #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

#email,
#message {
    width: 100%;
    max-width: 28.4rem;
}

form button {
    padding: 0.9rem 0.9rem 0.9rem 1.2rem;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    /* Animation Enhancement */
    background: linear-gradient(45deg, #2d3436, #636e72);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

form button:hover::before {
    left: 100%;
}

form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 52, 54, 0.3);
}

/* footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.footer-about p {
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    width: 20px;
    color: #4ecdc4;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.social-link.linkedin:hover {
    background: #0e76a8;
    border-color: #0e76a8;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e4405f;
} */
/* 
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services li {
    padding: 0.5rem 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-services li::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4ecdc4;
}

.footer-services li:hover {
    transform: translateX(20px);
    color: #4ecdc4;

}

.footer-services li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
} */

/* Footer Styles */
footer {
  position: relative;
  background: linear-gradient(135deg, #2c3e50, #4a6491);
  color: white;
  padding-top: 80px;
  margin-top: 80px;
}

.footer-wave {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
  color: #2c3e50;
}

.footer-wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px 40px;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-column h3,
.footer-column h4 {
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column h3 {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #667eea, #4fd1c5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #667eea, #4fd1c5);
}

.footer-column p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(45deg, #667eea, #4fd1c5);
  transform: translateY(-3px);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-column ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #667eea;
}

.footer-column ul li:hover {
  transform: translateX(5px);
  opacity: 1;
}

.footer-column a {
  color: white;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #4fd1c5;
}

address p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #667eea, #4fd1c5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-wave {
    top: -50px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
    .hero {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }

    .hero-2 {
        flex-direction: column;
        height: auto;
        min-height: 120vh;
    }

    .hero-back {
        width: 100%;
        order: 1;
    }

    .hero-text {
        max-width: 90%;
        order: 2;
        top: 0;
        padding: 2rem;
    }

    .work {
        width: calc(50% - 10px);
        min-width: 250px;
    }

    .main-side {
        flex-direction: column;
        gap: 2rem;
    }

    .side1,
    .side2 {
        width: 100%;
        height: 50vh;
        min-height: 700px;
    }

    .side1 {
        background-color: rgb(6, 51, 51);
        height: 70vh;
    }

    .side2 {
        background-color: rgb(204, 128, 35);
    }

    .form-sec {
        flex-direction: column;
    }

    .form-img,
    form {
        width: 100%;
        min-width: auto;
    }

    form {
        padding: 2rem 1rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    header {

        padding: 1rem;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        font-size: clamp(2rem, 10vw, 4rem);
        height: 25vh;
        top: 10vh;
    }

    .hero-2 {
        top: 10vh;
        flex-direction: column;
    }

    .hero-back {
        width: 100%;
        height: 60vh;
    }

    .hero-back-pic {
        height: 60vh;
    }

    .hero-text {
        max-width: 100%;
        padding: 1.5rem;
        top: 0;
        font-size: 1rem;
    }

    .hero-text button {
        padding: 0.8rem 2rem;
        width: 100%;
        max-width: 200px;
    }

    .Myworks {
        top: 10vh;
        padding: 0 0.5rem;
    }

    .work {
        width: 100%;
        height: 15rem;
        min-width: auto;
        margin-bottom: 1rem;
    }

    .work-pics {
        flex-direction: column;
        gap: 1rem;
    }

    .small-sec {
        top: 20vh;
        padding: 1.5rem;
    }

    .small-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .small-main p {
        width: 100%;
        min-width: auto;
    }

    .small-main button {
        padding: 0.8rem 2rem;
    }

    .main-side {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .side1,
    .side2 {
        width: 100%;
        height: 40vh;
    }

    .form-sec {
        flex-direction: column;
    }

    .form-img {
        width: 100%;
        height: 40vh;
    }

    form {
        width: 100%;
        padding: 1.5rem;
        height: auto;
    }

    .form1 {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
    }

    .form1>div {
        min-width: auto;
    }

    input {
        padding: 1rem;
    }

    #email,
    #message {
        max-width: none;
    }

    .first-foot {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .first-foot>div {
        min-width: auto;
    }

    .last-icon {
        gap: 2rem;
        padding: 2rem;
    }

    .copy {
        justify-content: center;
        padding: 2rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    header {

        padding: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }

    .hero-text {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .work {
        height: 12rem;
    }

    .form-items h2 {
        font-size: 1.5rem;
    }

    .form-items p {
        font-size: 0.9rem;
        width: 100%;
    }

    input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    form button {
        padding: 0.8rem 1rem;
        width: 100%;
    }
}