* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: ;
}
body{
  background: linear-gradient(to bottom,black, grey, white);
}

a{
    color: white;
    text-decoration: none;
}
.navbar{
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 9%;
    background: slateblue;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    align-items: center;
}
.navbar .logo{
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.navbar ul{
    display: flex;
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    font-size: 20px;
    font-weight: 500;
    transition: .5s;
    display: block;
    padding: 10px 5px;
}
.nav-links .nav-cta-button {
  border-radius: 5opx;
}
.hamburger{
  display: none;
  cursor: pointer;
  width: 34px;
}
.hamburger .bar {
  flex-basis: 100%;
  height: 4px;
  background-color: #ffff;
  margin: 3px;
}
.navbar ul li:hover a,
.navbar ul li.active a {
    color: aquamarine;
}
.home{
    display: flex;
    align-items: center;
    height: 100vh;
    color: #fff;
    padding: 60px 9% 0;
}
.home-info h1{
    font-size: 55px;
}
.home-info h2{
    display: inline-block;
    font-size: 30;
    margin-top: -10px;
}
.home-info h2 span{
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: .7px#7cf03d;
    animation: display-text 12s linear infinite;
    animation-delay: calc(-4s * var(--i) );
}
.home-info h2 span::before {
    content: attr(data-text);
    position: absolute;
    width: 0;
    border-right: 2px solid #7cf03d;
    color: #7cf03d;
    white-space: nowrap;
    overflow: hidden;
    animation: fill-text 4s linear infinite;
}
@keyframes fill-text{

    10%,
    100%{
        width: 0;
    }
    90%{
        width: 100%;
    }
}
@keyframes display-text {

    25%,
    100%
    {
        display: none;
    }
} 
.home-info p{
    font-size: 15px;
    margin: 10px 0 25 px;
}
.home-info .sm{
    display: flex;
    align-items: center;
}
.btn{
    display: inline-block;
    padding: 10px 30px;
    background: #7cf03d;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 16px;
    font-weight: 600px;
    color: #1f242d;
    transition: 0.5s;
}
.btn:hover{
    background: transparent;
    color: #7cf03d;
    box-shadow: none;
}
.home-info .sm .smi{
    margin-left: 20px;
}
.home-info .sm .smi a {
    display: inline-flex;
    padding: 8px;
    border:2px solid #7cf03d;
    border-radius: 50px;
    font-size: 20px;
    color: #7cf03d;
    margin: 0 8px;
    transition: .5s;
}
.home-info .sm .smi a:hover{
    background: #7cf03d;
    color: #1f242d;
    box-shadow: 0 0 10px #7cf03d;
}
.home-img .img-box{
    position: relative;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    padding: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
}
.home-img .img-box::before,
.home-img .img-box::after
{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: conic-gradient(transparent, transparent, transparent, #7cf03d);
    transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;
}
.home-img .img-box::after{
    animation-delay: -5s;
}
@keyframes rotate-border{
    100%{
        transform: rotate(360deg);
    }
}
.home-img .img-box .img-item {
    width: 100%;
    height: 100%;
    background: #1f242d;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #1f242d;
}
.home-img .img-box .img-item img {
    position: absolute;
    display: block;
    width: 85%;
    object-fit: cover;
    top: -35px;
    mix-blend-mode: lighten;
}
.about-section {
  color: black;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: white;
  flex-wrap: wrap;
}

.about-section .container {
  max-width: 1100px;
  width: 100%;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #7cf03d;
  box-shadow: 0 4px 10px rgba(88, 166, 255, 0.3);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #f32170, #ff6b08,#cf23cf, #eedd44);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 10px;
}

.about-text p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.btn:hover {
  background: #1f6feb;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}
#skills {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

#skills h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

#skills p {
  color: #555;
  margin-bottom: 40px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
 

.skill {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  width: 220px;
  transition: transform 0.3s ease;
  color: #333;
}
.skill:hover{
background: linear-gradient(to left, #495258, #6e3482);
color: white;
 }

.skill:hover {
  transform: translateY(-5px);
}

.skill i {
  font-size: 3rem;
  color: #0078ff;
  margin-bottom: 10px;
}

.skill h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  
}
.skill h3:hover{
  color: #f9f9f9;
}

.progress-bar {
  background: #eee;
  border-radius: 20px;
  height: 8px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0078ff, #00c6ff);
  border-radius: 20px;
}
#services {
  padding: 60px 10%;
  background: #0000;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
#services h2{
  color: red;
}
#services p {
  font-size: 15px;
}
.services-container{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px;
  width: 300px;
  transition: transform 0.3s ease;
  color: #333;
}
.service:hover{
  background: linear-gradient(to left, #880e4f, #ad1457, #c2185b, #d81b60);
  color: white;
  transform: translateY(-5px);
}
.service i {
  font-size: 3rem;
  color: #0078ff;
  margin-bottom: 10px;
}


.container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Testimonials Grid */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            padding: 20px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            background: linear-gradient(to right, red, orange);
            color: white;
        }

        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
        }

        .quote-icon {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--dark);
            line-height: 1.8;
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-gray);
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .rating {
            color: #FFC107;
            margin-top: 5px;
        }

.contact-section {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.contact-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-section p {
  margin-bottom: 40px;
  color: #555;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 50%;
}

.contact-form button {
  padding: 12px 20px;
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #005fcc;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-info, .contact-form {
    text-align: left;
  }
}
/* ======= FOOTER STYLES ======= */
.footer {
  background: #0d1117;
  color: #c9d1d9;
  padding: 60px 20px 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #8b949e;
  font-size: 0.95rem;
}

/* Navigation Links */
.footer-nav {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #c9d1d9;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-nav a:hover {
  color: #58a6ff;
}

/* Social Links */
.footer-social a {
  color: #c9d1d9;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #58a6ff;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #21262d;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #8b949e;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media(max-width: 768px){
  nav{
    flex-wrap: wrap;
    position: sticky;
  }
  .hamburger{
    display: flex;
    flex-wrap: wrap;
  }
  .logo{
    height: 80px;
  }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-wrap: wrap;
  }
   .nav-links a {
    text-align: center;
    font-size: 28px;
   }
   .nav-links li{
    flex-basis: 100%;
   }
   .nav-links a:hover{
    background-color: #39ffde;
   }
   .nav-links .nav-cta-button{
    padding: 30px 16px;
    margin-left: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;

  }
  .nav-links .nav-cta-button:hover{
    background-color: #00c6ff;
  }
  .home-img{
    display: none;
  }
  .home-info .sm .smi{
    margin-left: 20px;
}
.home-info .sm .smi a {
    display: inline-block;
    padding: 4px;
    border:2px solid #7cf03d;
    border-radius: 50px;
    font-size: 12px;
    color: #7cf03d;
    margin: 0 8px;
    transition: .5s;
}
.btn{
    display: inline-block;
    padding: 10px 10px;
    background: #7cf03d;
    border: 2px solid #7cf03d;
    border-radius: 20px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 10px;
    font-weight: 400px;
    color: #1f242d;
    transition: 0.5s;
}
.home{
  position: relative;
  display: flex;
}
  
}
/* Three dots dropdown styles */
.dropdown-container {
    position: relative;
    display: none; /* Hidden by default, shown on mobile */
}

.dots-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background-color 0.3s ease;
}

.dots-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dot {
    width: 20px;
    height: 2px;
    background-color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
}

/* Show dots menu on mobile */
@media (max-width: 768px) {
    .dropdown-container {
        display: block;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: none;
    }
}

/* Show hamburger menu on larger screens if needed */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex !important;
    }
}
::-webkit-scrollbar-thumb{
        background: linear-gradient(to top, pink, purple);
        border-radius: 10px;
    }
    ::-webkit-scrollbar{
        width: 5px;
        height: 50px;
    }
   .qualification-container{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    
   }
   .qualification{
    background :rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 25px;
    width: 300px;
   }
   .qualification i {
    color: #00c6ff;
    font-size: 30px;
    margin-bottom: 10px;
   }