/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --dark-gray: #34495e;
    --gradient-start: #2c3e50;
    --gradient-end: #3498db;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    min-height: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.logo h1:hover {
    color: #00ff87;
    transform: scale(1.05);
}

.logo p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo p:hover {
    color: #60efff;
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff87, #60efff);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ff87;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.1s ease;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group i {
    margin-right: 10px;
    color: #555;
}

input, textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* Contact Section Styling */
.contact {
  padding: 60px 20px;
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  text-align: center;
    position: relative;
    overflow: hidden;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #0d47a1;
  font-weight: 700;
}

/* Form Box */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Form Group */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 15px;
  background-color: #f9f9f9;
}

.form-group i {
  color: #007bff;
  margin-right: 10px;
  font-size: 10px;
}

/* Inputs & Textarea */
input,
textarea {
  flex: 1;
  border: solid 1px #ccc;
  outline: none;
  background:solid 2px black;
  font-size: 1rem;
  padding: 10px;
  color: #8a3232;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.cta-button {
  background: linear-gradient(to right, #00b4db, #0083b0);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.1s ease;
  box-shadow: 0 4px 15px rgba(0, 131, 176, 0.3);
}

.cta-button:hover {
  transform: scale(24s);
  box-shadow: 0 6px 20px rgba(0, 131, 176, 0.4);
  background: linear-gradient(to right, #0083b0, #00b4db);
}

/* Responsive Fixes */
@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group i {
    margin-bottom: 8px;
  }

  .cta-button {
    width: 100%;
    text-align: center;

  }
}


.menu-btn:hover {
    color: #3de04b;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.2;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    transition: all 0.3s ease;
}

.hero-content h1:hover {
    background: linear-gradient(45deg, #00ff87, #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.02);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    animation: slideInRight 1s ease-out 0.3s backwards;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hero-content h2:hover {
    color: #00ff87;
    transform: scale(1.05);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-content p:hover {
    color: #60efff;
    transform: scale(1.02);
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #00ff87, #60efff);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 3s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(96, 239, 255, 0.4);
    background: linear-gradient(45deg, #60efff, #00ff87);
}

.cta-button:hover::before {
    left: 100%;
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
    backdrop-filter: blur(5px);
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(0,255,135,0.2), rgba(96,239,255,0.2));
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    background: linear-gradient(45deg, rgba(96,239,255,0.2), rgba(0,255,135,0.2));
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    background: linear-gradient(45deg, rgba(0,255,135,0.2), rgba(96,239,255,0.2));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomInOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        background: linear-gradient(45deg, rgba(0,255,135,0.2), rgba(96,239,255,0.2));
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
        background: linear-gradient(45deg, rgba(96,239,255,0.2), rgba(0,255,135,0.2));
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        background: linear-gradient(45deg, rgba(0,255,135,0.2), rgba(96,239,255,0.2));
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        background: linear-gradient(45deg, rgba(96,239,255,0.2), rgba(0,255,135,0.2));
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.95));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.about h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    color: var(--white);
    animation: fadeInLeft 1s ease-out;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.about-text p:hover {
    transform: translateX(10px);
    color: #00ff87;
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    animation: fadeInRight 1s ease-out;
}

.skill {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.skill:hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.skill i {
    font-size: 2.5rem;
    color: #00ff87;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.skill:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #60efff;
}

.skill span {
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill:hover span {
    color: #00ff87;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    z-index: 0;
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    animation: slideInDown 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,255,135,0.1), rgba(96,239,255,0.1));
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(44,62,80,0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    color: #00ff87;
    transform: scale(1.2) rotate(360deg);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.service-card p {
    color: var(--text-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--dark-gray);
    transform: scale(1.02);
}

/* New Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.95));
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.portfolio h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 1s ease-out;
    cursor: pointer;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,255,135,0.2), rgba(96,239,255,0.2));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.95));
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.portfolio-overlay p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay p:first-of-type {
    color: #00ff87;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Add staggered animation for portfolio items */
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.3s; }
.portfolio-item:nth-child(3) { animation-delay: 0.5s; }

/* Add hover effect for portfolio section title */
.portfolio h2:hover {
    color: #00ff87;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.testimonials h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* 3 slides * 100% */
}

.testimonial-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    flex: 0 0 100%;
    padding: 1rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.testimonial:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial p {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.client-details h4 {
    color: #00ff87;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.testimonial-nav:hover {
    background: #00ff87;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ff87;
    transform: scale(1.2);
}

/* Responsive adjustments for testimonials */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 4rem;
    }
}

@media (max-width: 992px) {
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial p {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .testimonial-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-container {
        padding: 0 3rem;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        top: 15px;
        left: 15px;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .client-details h4 {
        font-size: 1.1rem;
    }
    
    .client-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-container {
        padding: 0 2.5rem;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .testimonial p {
        font-size: 0.95rem;
        margin: 1.25rem 0;
    }
    
    .client-info {
        gap: 0.75rem;
    }
    
    .client-image {
        width: 45px;
        height: 45px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
    
    .rating i {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .testimonials-container {
        padding: 0 2rem;
    }
    
    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .quote-icon {
        font-size: 1.25rem;
        top: 12px;
        left: 12px;
    }
    
    .testimonial p {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .client-image {
        width: 40px;
        height: 40px;
    }
    
    .client-details h4 {
        font-size: 0.95rem;
    }
    
    .client-details p {
        font-size: 0.75rem;
    }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .testimonial p {
        margin: 1rem 0;
    }
    
    .client-info {
        margin-top: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-group textarea i {
    top: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.1);
    outline: none;
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .cta-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #4a90e2;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4a90e2;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content,
    .services-grid,
    .portfolio-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.95);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 0.5rem 0;
    }

    .menu-btn {
        display: block;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Section */
    .testimonial-group {
        grid-template-columns: 1fr;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    /* Why Choose Section */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }

    /* Contact Section */
    .contact-form,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .skills {
        grid-template-columns: 1fr;
    }

    .skill {
        padding: 1.5rem;
    }

    /* Services Section */
    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Portfolio Section */
    .portfolio-item {
        margin-bottom: 1rem;
    }

    .portfolio-overlay {
        padding: 1rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }

    /* Testimonials Section */
    .testimonial {
        padding: 1.5rem;
    }

    .client-image {
        width: 50px;
        height: 50px;
    }

    .client-details h4 {
        font-size: 1rem;
    }

    .client-details p {
        font-size: 0.8rem;
    }

    /* Why Choose Section */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Process Section */
    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    /* Contact Section */
    .form-group {
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .contact-item a {
        font-size: 14px;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial p {
        font-size: 0.9rem;
    }

    .feature-card,
    .step,
    .service-card {
        padding: 1rem;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .nav-links {
        top: 60px;
    }

    .testimonial {
        padding: 1rem;
    }

    .contact-form textarea {
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-button,
    .testimonial-nav,
    .contact-form {
        display: none;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* --- Motion & Animation Improvements --- */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 1s ease both;
}

.animate-slide-up {
  animation: slide-up 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Demo: Animate major sections on load */
.hero, .about, .services, .portfolio, .testimonials, .contact {
  opacity: 0;
  animation: fade-in 1.2s ease forwards;
}
.hero { animation-delay: 0.1s; }
.about { animation-delay: 0.3s; }
.services { animation-delay: 0.5s; }
.portfolio { animation-delay: 0.7s; }
.testimonials { animation-delay: 0.9s; }
.contact { animation-delay: 1.1s; }

/* Why Choose Me Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #60efff, #00ff87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #60efff;
    margin-bottom: 1.5rem;
    transition: none;
}

.feature-card:hover i {
    color: var(--accent-color);
}

.feature-card h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.feature-card:hover h3 {
    color: var(--secondary-color);
}

.feature-card p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.08rem;
    transition: none;
}

.feature-card:hover p {
    color: var(--dark-gray);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.feature-card:active::after {
    width: 180px; height: 180px;
    opacity: 0.5;
}

/* My Work Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
    opacity: 0.12;
}

.step {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.step:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #60efff, #00ff87);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: none;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.10);
}

.step h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.step p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: none;
}

.step > * {
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}

.step:focus::after {
    width: 0; height: 0; opacity: 0;
}

.navbar.scrolled .nav-links a {
    color: #fff !important;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--secondary-color) !important;
}

/* --- IMPROVED Why Choose Me & Process Section --- */

/* Animated Gradient Blobs */
.why-choose, .process {
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}
.why-choose .blobs, .process .blobs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.10;
    animation: blobMove 24s infinite alternate;
}
.blob1 { width: 320px; height: 320px; background: linear-gradient(135deg, #60efff, #00ff87); top: 10%; left: 5%; animation-delay: 0s; }
.blob2 { width: 220px; height: 220px; background: linear-gradient(135deg, #e74c3c, #60efff); top: 60%; left: 70%; animation-delay: 4s; }
.blob3 { width: 180px; height: 180px; background: linear-gradient(135deg, #3498db, #00ff87); top: 70%; left: 20%; animation-delay: 8s; }
@keyframes blobMove {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px, -10px); }
    100% { transform: scale(1) translate(0,0); }
}

/* Animated Gradient Text for Headings */
.why-choose h2, .process h2 {
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 1px;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism & Card/Step Animation */
.feature-card, .step {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.13);
    opacity: 1;
    transform: none;
}
/* Staggered Animation */
.features-grid .feature-card:nth-child(1), .process-steps .step:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(2), .process-steps .step:nth-child(2) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(3), .process-steps .step:nth-child(3) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(4), .process-steps .step:nth-child(4) { animation-delay: 0.8s; }

/* Card/Step Hover Effect */
.feature-card:hover, .step:hover {
    box-shadow: 0 16px 32px 0 rgba(44,62,80,0.13);
    transform: translateY(-6px) scale(1.02);
    animation: none;
    border: 1.5px solid #60efff;
    background: rgba(255,255,255,0.90);
}

/* Ripple only on click */
.feature-card:active::after, .step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}
.feature-card:focus::after, .step:focus::after {
    width: 0; height: 0; opacity: 0;
}

/* Responsive for blobs */
@media (max-width: 900px) {
    .blob1, .blob2, .blob3 { width: 160px; height: 160px; }
}
@media (max-width: 600px) {
    .blob1, .blob2, .blob3 { display: none; }
}

/* Section fade-in/slide-up on scroll */
.why-choose, .process {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s cubic-bezier(0.23, 1, 0.32, 1), transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.why-choose.in-view, .process.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax blobs (JS will update transform) */
.blob {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Education & Achievements Section */
.education {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background blobs */
.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.education .blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.education .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blobMove 24s infinite alternate;
}

.education .blob1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #60efff, #00ff87);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.education .blob2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #e74c3c, #60efff);
    top: 60%;
    left: 70%;
    animation-delay: 4s;
}

.education .blob3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3498db, #00ff87);
    top: 70%;
    left: 20%;
    animation-delay: 8s;
}

.education h2 {
    text-align: center;
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 1px;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.education-section h3::after,
.certifications-section h3::after,
.achievements-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #60efff);
    border-radius: 3px;
}

.education-section h3 i,
.certifications-section h3 i,
.achievements-section h3 i {
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.education-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 239, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 255, 0.95));
    border: 1px solid rgba(96, 239, 255, 0.3);
}

.education-card:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, 
        rgba(96, 239, 255, 0.2), 
        rgba(0, 255, 135, 0.2),
        rgba(52, 152, 219, 0.2)
    );
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(96, 239, 255, 0.3);
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.education-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-details .status {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(96, 239, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-details .description {
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.certification-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-item:hover::before {
    opacity: 1;
}

.certification-item i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.certification-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.certification-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.certification-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item i {
    font-size: 1.4rem;
    color: #00ff87;
    transition: all 0.4s ease;
}

.achievement-item:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
}

.achievement-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.achievement-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Animation for section entrance */
.education {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.education-section,
.certifications-section,
.achievements-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.education-section { animation-delay: 0.2s; }
.certifications-section { animation-delay: 0.4s; }
.achievements-section { animation-delay: 0.6s; }

/* Staggered animation for cards */
.education-card,
.certification-item,
.achievement-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.education-card:nth-child(1) { animation-delay: 0.3s; }
.education-card:nth-child(2) { animation-delay: 0.4s; }

.certification-item:nth-child(1) { animation-delay: 0.5s; }
.certification-item:nth-child(2) { animation-delay: 0.6s; }
.certification-item:nth-child(3) { animation-delay: 0.7s; }
.certification-item:nth-child(4) { animation-delay: 0.8s; }

.achievement-item:nth-child(1) { animation-delay: 0.5s; }
.achievement-item:nth-child(2) { animation-delay: 0.6s; }
.achievement-item:nth-child(3) { animation-delay: 0.7s; }
.achievement-item:nth-child(4) { animation-delay: 0.8s; }
.achievement-item:nth-child(5) { animation-delay: 0.9s; }
.achievement-item:nth-child(6) { animation-delay: 1s; }
.achievement-item:nth-child(7) { animation-delay: 1.1s; }

/* Keep existing responsive styles */

@media (max-width: 992px) {
    .education h2 {
        font-size: 2.2rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .education {
        padding: 60px 0;
    }

    .education h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .education-content {
        gap: 2rem;
    }

    .education-card {
        padding: 1.5rem;
    }

    .education-icon {
        width: 50px;
        height: 50px;
    }

    .education-icon i {
        font-size: 1.5rem;
    }

    .education-details h4 {
        font-size: 1.2rem;
    }

    .certification-item,
    .achievement-item {
        padding: 1.25rem;
    }

    .certification-item i {
        font-size: 1.3rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .education h2 {
        font-size: 1.8rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.4rem;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .education-icon {
        margin: 0 auto;
    }

    .certification-item,
    .achievement-item {
        padding: 1rem;
    }

    .certification-item i {
        font-size: 1.2rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .education h2 {
        font-size: 1.6rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.3rem;
    }

    .education-details h4 {
        font-size: 1.1rem;
    }

    .education-details .status,
    .education-details .description {
        font-size: 0.9rem;
    }
}

/* Styling for certificate thumbnail */
.certification-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color); /* Inherit text color */
    text-decoration: none; /* Remove default underline */
    width: 100%; /* Make the link fill the container */
    justify-content: space-between; /* Space between text/icon and image */
}

.certification-item a:hover span {
    color: inherit; /* Prevent color change on text hover within the link */
}

.certificate-thumbnail {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent thumbnail from shrinking */
}

.certification-item a:hover .certificate-thumbnail {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .certification-item a {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .certificate-thumbnail {
        margin-top: 10px;
    }
}

/* Styling for done icons */
.done-icon {
    color: #3498db; /* Blue color */
    font-size: 1.2rem;
    margin-left: 10px; /* Space from the text */
    transition: color 0.3s ease; /* Add transition for smooth color change */
}

.done-icon:hover {
    color: #00ff87; /* Green color on hover */
}

/* Ensure icons align nicely with text */
.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    display: flex;
    align-items: center;
}

/* Responsive adjustments for icon size */
@media (max-width: 768px) {
    .done-icon {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .done-icon {
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .services-grid,
    .portfolio-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .education-content {
        flex-direction: column;
    }
    
    .education-cards,
    .certifications-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
        color: var(--text-color);
        font-size: 1.2rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .skills {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonial-group {
        flex-direction: column;
    }
    
    .testimonials-container {
        padding: 0 40px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        width: 100%;
    }
    
    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .skills {
        flex-direction: column;
        align-items: center;
    }
    
    .skill {
        width: 100%;
        margin: 10px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .client-image {
        width: 60px;
        height: 60px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .contact-item a {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .service-card,
    .portfolio-item,
    .testimonial,
    .step {
        margin: 10px 0;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .testimonial {
        padding: 15px;
    }
    
    .contact-form textarea {
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .menu-btn,
    .cta-button,
    .testimonial-nav,
    .contact-form button {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out;
}

/* Section Animations */
.hero, .about, .services, .portfolio, .testimonials, .contact {
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
}

.hero { animation-delay: 0.1s; }
.about { animation-delay: 0.3s; }
.services { animation-delay: 0.5s; }
.portfolio { animation-delay: 0.7s; }
.testimonials { animation-delay: 0.9s; }
.contact { animation-delay: 1.1s; }

/* Why Choose Me Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #60efff, #00ff87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #60efff;
    margin-bottom: 1.5rem;
    transition: none;
}

.feature-card:hover i {
    color: var(--accent-color);
}

.feature-card h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.feature-card:hover h3 {
    color: var(--secondary-color);
}

.feature-card p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.08rem;
    transition: none;
}

.feature-card:hover p {
    color: var(--dark-gray);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.feature-card:active::after {
    width: 180px; height: 180px;
    opacity: 0.5;
}

/* My Work Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
    opacity: 0.12;
}

.step {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.step:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #60efff, #00ff87);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: none;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.10);
}

.step h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.step p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: none;
}

.step > * {
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}

.step:focus::after {
    width: 0; height: 0; opacity: 0;
}

.navbar.scrolled .nav-links a {
    color: #fff !important;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--secondary-color) !important;
}

/* --- IMPROVED Why Choose Me & Process Section --- */

/* Animated Gradient Blobs */
.why-choose, .process {
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}
.why-choose .blobs, .process .blobs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.10;
    animation: blobMove 24s infinite alternate;
}
.blob1 { width: 320px; height: 320px; background: linear-gradient(135deg, #60efff, #00ff87); top: 10%; left: 5%; animation-delay: 0s; }
.blob2 { width: 220px; height: 220px; background: linear-gradient(135deg, #e74c3c, #60efff); top: 60%; left: 70%; animation-delay: 4s; }
.blob3 { width: 180px; height: 180px; background: linear-gradient(135deg, #3498db, #00ff87); top: 70%; left: 20%; animation-delay: 8s; }
@keyframes blobMove {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px, -10px); }
    100% { transform: scale(1) translate(0,0); }
}

/* Animated Gradient Text for Headings */
.why-choose h2, .process h2 {
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 1px;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism & Card/Step Animation */
.feature-card, .step {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.13);
    opacity: 1;
    transform: none;
}
/* Staggered Animation */
.features-grid .feature-card:nth-child(1), .process-steps .step:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(2), .process-steps .step:nth-child(2) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(3), .process-steps .step:nth-child(3) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(4), .process-steps .step:nth-child(4) { animation-delay: 0.8s; }

/* Card/Step Hover Effect */
.feature-card:hover, .step:hover {
    box-shadow: 0 16px 32px 0 rgba(44,62,80,0.13);
    transform: translateY(-6px) scale(1.02);
    animation: none;
    border: 1.5px solid #60efff;
    background: rgba(255,255,255,0.90);
}

/* Ripple only on click */
.feature-card:active::after, .step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}
.feature-card:focus::after, .step:focus::after {
    width: 0; height: 0; opacity: 0;
}

/* Responsive for blobs */
@media (max-width: 900px) {
    .blob1, .blob2, .blob3 { width: 160px; height: 160px; }
}
@media (max-width: 600px) {
    .blob1, .blob2, .blob3 { display: none; }
}

/* Section fade-in/slide-up on scroll */
.why-choose, .process {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s cubic-bezier(0.23, 1, 0.32, 1), transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.why-choose.in-view, .process.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax blobs (JS will update transform) */
.blob {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Education & Achievements Section */
.education {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background blobs */
.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.education .blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.education .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blobMove 24s infinite alternate;
}

.education .blob1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #60efff, #00ff87);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.education .blob2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #e74c3c, #60efff);
    top: 60%;
    left: 70%;
    animation-delay: 4s;
}

.education .blob3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3498db, #00ff87);
    top: 70%;
    left: 20%;
    animation-delay: 8s;
}

.education h2 {
    text-align: center;
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 1px;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.education-section h3::after,
.certifications-section h3::after,
.achievements-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #60efff);
    border-radius: 3px;
}

.education-section h3 i,
.certifications-section h3 i,
.achievements-section h3 i {
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.education-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 239, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 255, 0.95));
    border: 1px solid rgba(96, 239, 255, 0.3);
}

.education-card:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, 
        rgba(96, 239, 255, 0.2), 
        rgba(0, 255, 135, 0.2),
        rgba(52, 152, 219, 0.2)
    );
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(96, 239, 255, 0.3);
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.education-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-details .status {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(96, 239, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-details .description {
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.certification-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-item:hover::before {
    opacity: 1;
}

.certification-item i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.certification-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.certification-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.certification-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item i {
    font-size: 1.4rem;
    color: #00ff87;
    transition: all 0.4s ease;
}

.achievement-item:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
}

.achievement-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.achievement-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Animation for section entrance */
.education {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.education-section,
.certifications-section,
.achievements-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.education-section { animation-delay: 0.2s; }
.certifications-section { animation-delay: 0.4s; }
.achievements-section { animation-delay: 0.6s; }

/* Staggered animation for cards */
.education-card,
.certification-item,
.achievement-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.education-card:nth-child(1) { animation-delay: 0.3s; }
.education-card:nth-child(2) { animation-delay: 0.4s; }

.certification-item:nth-child(1) { animation-delay: 0.5s; }
.certification-item:nth-child(2) { animation-delay: 0.6s; }
.certification-item:nth-child(3) { animation-delay: 0.7s; }
.certification-item:nth-child(4) { animation-delay: 0.8s; }

.achievement-item:nth-child(1) { animation-delay: 0.5s; }
.achievement-item:nth-child(2) { animation-delay: 0.6s; }
.achievement-item:nth-child(3) { animation-delay: 0.7s; }
.achievement-item:nth-child(4) { animation-delay: 0.8s; }
.achievement-item:nth-child(5) { animation-delay: 0.9s; }
.achievement-item:nth-child(6) { animation-delay: 1s; }
.achievement-item:nth-child(7) { animation-delay: 1.1s; }

/* Keep existing responsive styles */

@media (max-width: 992px) {
    .education h2 {
        font-size: 2.2rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .education {
        padding: 60px 0;
    }

    .education h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .education-content {
        gap: 2rem;
    }

    .education-card {
        padding: 1.5rem;
    }

    .education-icon {
        width: 50px;
        height: 50px;
    }

    .education-icon i {
        font-size: 1.5rem;
    }

    .education-details h4 {
        font-size: 1.2rem;
    }

    .certification-item,
    .achievement-item {
        padding: 1.25rem;
    }

    .certification-item i {
        font-size: 1.3rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .education h2 {
        font-size: 1.8rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.4rem;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .education-icon {
        margin: 0 auto;
    }

    .certification-item,
    .achievement-item {
        padding: 1rem;
    }

    .certification-item i {
        font-size: 1.2rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .education h2 {
        font-size: 1.6rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.3rem;
    }

    .education-details h4 {
        font-size: 1.1rem;
    }

    .education-details .status,
    .education-details .description {
        font-size: 0.9rem;
    }
}

/* Styling for certificate thumbnail */
.certification-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color); /* Inherit text color */
    text-decoration: none; /* Remove default underline */
    width: 100%; /* Make the link fill the container */
    justify-content: space-between; /* Space between text/icon and image */
}

.certification-item a:hover span {
    color: inherit; /* Prevent color change on text hover within the link */
}

.certificate-thumbnail {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent thumbnail from shrinking */
}

.certification-item a:hover .certificate-thumbnail {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .certification-item a {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .certificate-thumbnail {
        margin-top: 10px;
    }
}

/* Styling for done icons */
.done-icon {
    color: #3498db; /* Blue color */
    font-size: 1.2rem;
    margin-left: 10px; /* Space from the text */
    transition: color 0.3s ease; /* Add transition for smooth color change */
}

.done-icon:hover {
    color: #00ff87; /* Green color on hover */
}

/* Ensure icons align nicely with text */
.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    display: flex;
    align-items: center;
}

/* Responsive adjustments for icon size */
@media (max-width: 768px) {
    .done-icon {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .done-icon {
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .services-grid,
    .portfolio-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .education-content {
        flex-direction: column;
    }
    
    .education-cards,
    .certifications-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
        color: var(--text-color);
        font-size: 1.2rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .skills {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonial-group {
        flex-direction: column;
    }
    
    .testimonials-container {
        padding: 0 40px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        width: 100%;
    }
    
    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .skills {
        flex-direction: column;
        align-items: center;
    }
    
    .skill {
        width: 100%;
        margin: 10px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .client-image {
        width: 60px;
        height: 60px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .contact-item a {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .service-card,
    .portfolio-item,
    .testimonial,
    .step {
        margin: 10px 0;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .testimonial {
        padding: 15px;
    }
    
    .contact-form textarea {
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .menu-btn,
    .cta-button,
    .testimonial-nav,
    .contact-form button {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out;
}

/* Section Animations */
.hero, .about, .services, .portfolio, .testimonials, .contact {
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
}

.hero { animation-delay: 0.1s; }
.about { animation-delay: 0.3s; }
.services { animation-delay: 0.5s; }
.portfolio { animation-delay: 0.7s; }
.testimonials { animation-delay: 0.9s; }
.contact { animation-delay: 1.1s; }

/* Why Choose Me Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #60efff, #00ff87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #60efff;
    margin-bottom: 1.5rem;
    transition: none;
}

.feature-card:hover i {
    color: var(--accent-color);
}

.feature-card h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.feature-card:hover h3 {
    color: var(--secondary-color);
}

.feature-card p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.08rem;
    transition: none;
}

.feature-card:hover p {
    color: var(--dark-gray);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.feature-card:active::after {
    width: 180px; height: 180px;
    opacity: 0.5;
}

/* My Work Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    animation: zoomInOut 20s infinite alternate;
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.07);
    animation: slideInDown 1s ease-out;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
    opacity: 0.12;
}

.step {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(52, 152, 219, 0.10);
    border: 1.5px solid #60aaff;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    color: #23395d;
    opacity: 1;
    transform: none;
}

.step:hover {
    box-shadow: 0 15px 30px rgba(44,62,80,0.12);
    background: rgba(255,255,255,0.95);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #60efff, #00ff87);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: none;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.10);
}

.step h3 {
    color: #23395d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: none;
}

.step p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: none;
}

.step > * {
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #60efff33 0%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}

.step:focus::after {
    width: 0; height: 0; opacity: 0;
}

.navbar.scrolled .nav-links a {
    color: #fff !important;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--secondary-color) !important;
}

/* --- IMPROVED Why Choose Me & Process Section --- */

/* Animated Gradient Blobs */
.why-choose, .process {
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}
.why-choose .blobs, .process .blobs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.10;
    animation: blobMove 24s infinite alternate;
}
.blob1 { width: 320px; height: 320px; background: linear-gradient(135deg, #60efff, #00ff87); top: 10%; left: 5%; animation-delay: 0s; }
.blob2 { width: 220px; height: 220px; background: linear-gradient(135deg, #e74c3c, #60efff); top: 60%; left: 70%; animation-delay: 4s; }
.blob3 { width: 180px; height: 180px; background: linear-gradient(135deg, #3498db, #00ff87); top: 70%; left: 20%; animation-delay: 8s; }
@keyframes blobMove {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px, -10px); }
    100% { transform: scale(1) translate(0,0); }
}

/* Animated Gradient Text for Headings */
.why-choose h2, .process h2 {
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 1px;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism & Card/Step Animation */
.feature-card, .step {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.13);
    opacity: 1;
    transform: none;
}
/* Staggered Animation */
.features-grid .feature-card:nth-child(1), .process-steps .step:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(2), .process-steps .step:nth-child(2) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(3), .process-steps .step:nth-child(3) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(4), .process-steps .step:nth-child(4) { animation-delay: 0.8s; }

/* Card/Step Hover Effect */
.feature-card:hover, .step:hover {
    box-shadow: 0 16px 32px 0 rgba(44,62,80,0.13);
    transform: translateY(-6px) scale(1.02);
    animation: none;
    border: 1.5px solid #60efff;
    background: rgba(255,255,255,0.90);
}

/* Ripple only on click */
.feature-card:active::after, .step:active::after {
    width: 180px; height: 180px;
    opacity: 0.7;
}
.feature-card:focus::after, .step:focus::after {
    width: 0; height: 0; opacity: 0;
}

/* Responsive for blobs */
@media (max-width: 900px) {
    .blob1, .blob2, .blob3 { width: 160px; height: 160px; }
}
@media (max-width: 600px) {
    .blob1, .blob2, .blob3 { display: none; }
}

/* Section fade-in/slide-up on scroll */
.why-choose, .process {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s cubic-bezier(0.23, 1, 0.32, 1), transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.why-choose.in-view, .process.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax blobs (JS will update transform) */
.blob {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Education & Achievements Section */
.education {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background blobs */
.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

.education .blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.education .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blobMove 24s infinite alternate;
}

.education .blob1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #60efff, #00ff87);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.education .blob2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #e74c3c, #60efff);
    top: 60%;
    left: 70%;
    animation-delay: 4s;
}

.education .blob3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3498db, #00ff87);
    top: 70%;
    left: 20%;
    animation-delay: 8s;
}

.education h2 {
    text-align: center;
    background: linear-gradient(90deg, #60efff, #00ff87, #3498db, #e74c3c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 1px;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.education-section h3::after,
.certifications-section h3::after,
.achievements-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #60efff);
    border-radius: 3px;
}

.education-section h3 i,
.certifications-section h3 i,
.achievements-section h3 i {
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.education-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 239, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 255, 0.95));
    border: 1px solid rgba(96, 239, 255, 0.3);
}

.education-card:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, 
        rgba(96, 239, 255, 0.2), 
        rgba(0, 255, 135, 0.2),
        rgba(52, 152, 219, 0.2)
    );
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(96, 239, 255, 0.3);
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(96, 239, 255, 0.5);
    background: linear-gradient(45deg, #00ff87, #60efff, #3498db);
}

.education-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.education-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details h4 {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.education-details .status {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(96, 239, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.education-card:hover .education-details .status {
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.2), rgba(0, 255, 135, 0.2));
    color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(96, 239, 255, 0.2);
}

.education-details .description {
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.certification-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-item:hover::before {
    opacity: 1;
}

.certification-item i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--secondary-color), #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.certification-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.certification-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.certification-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 239, 255, 0.1), rgba(0, 255, 135, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item i {
    font-size: 1.4rem;
    color: #00ff87;
    transition: all 0.4s ease;
}

.achievement-item:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
}

.achievement-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.achievement-item:hover span {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Animation for section entrance */
.education {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.education-section,
.certifications-section,
.achievements-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.education-section { animation-delay: 0.2s; }
.certifications-section { animation-delay: 0.4s; }
.achievements-section { animation-delay: 0.6s; }

/* Staggered animation for cards */
.education-card,
.certification-item,
.achievement-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.education-card:nth-child(1) { animation-delay: 0.3s; }
.education-card:nth-child(2) { animation-delay: 0.4s; }

.certification-item:nth-child(1) { animation-delay: 0.5s; }
.certification-item:nth-child(2) { animation-delay: 0.6s; }
.certification-item:nth-child(3) { animation-delay: 0.7s; }
.certification-item:nth-child(4) { animation-delay: 0.8s; }

.achievement-item:nth-child(1) { animation-delay: 0.5s; }
.achievement-item:nth-child(2) { animation-delay: 0.6s; }
.achievement-item:nth-child(3) { animation-delay: 0.7s; }
.achievement-item:nth-child(4) { animation-delay: 0.8s; }
.achievement-item:nth-child(5) { animation-delay: 0.9s; }
.achievement-item:nth-child(6) { animation-delay: 1s; }
.achievement-item:nth-child(7) { animation-delay: 1.1s; }

/* Keep existing responsive styles */

@media (max-width: 992px) {
    .education h2 {
        font-size: 2.2rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .education {
        padding: 60px 0;
    }

    .education h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .education-content {
        gap: 2rem;
    }

    .education-card {
        padding: 1.5rem;
    }

    .education-icon {
        width: 50px;
        height: 50px;
    }

    .education-icon i {
        font-size: 1.5rem;
    }

    .education-details h4 {
        font-size: 1.2rem;
    }

    .certification-item,
    .achievement-item {
        padding: 1.25rem;
    }

    .certification-item i {
        font-size: 1.3rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .education h2 {
        font-size: 1.8rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.4rem;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .education-icon {
        margin: 0 auto;
    }

    .certification-item,
    .achievement-item {
        padding: 1rem;
    }

    .certification-item i {
        font-size: 1.2rem;
    }

    .certification-item span,
    .achievement-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .education h2 {
        font-size: 1.6rem;
    }

    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.3rem;
    }

    .education-details h4 {
        font-size: 1.1rem;
    }

    .education-details .status,
    .education-details .description {
        font-size: 0.9rem;
    }
}

/* Styling for certificate thumbnail */
.certification-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color); /* Inherit text color */
    text-decoration: none; /* Remove default underline */
    width: 100%; /* Make the link fill the container */
    justify-content: space-between; /* Space between text/icon and image */
}

.certification-item a:hover span {
    color: inherit; /* Prevent color change on text hover within the link */
}

.certificate-thumbnail {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent thumbnail from shrinking */
}

.certification-item a:hover .certificate-thumbnail {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .certification-item a {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .certificate-thumbnail {
        margin-top: 10px;
    }
}

/* Styling for done icons */
.done-icon {
    color: #3498db; /* Blue color */
    font-size: 1.2rem;
    margin-left: 10px; /* Space from the text */
    transition: color 0.3s ease; /* Add transition for smooth color change */
}

.done-icon:hover {
    color: #00ff87; /* Green color on hover */
}

/* Ensure icons align nicely with text */
.education-section h3,
.certifications-section h3,
.achievements-section h3 {
    display: flex;
    align-items: center;
}

/* Responsive adjustments for icon size */
@media (max-width: 768px) {
    .done-icon {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .done-icon {
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .services-grid,
    .portfolio-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .education-content {
        flex-direction: column;
    }
    
    .education-cards,
    .certifications-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
        color: var(--text-color);
        font-size: 1.2rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .skills {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonial-group {
        flex-direction: column;
    }
    
    .testimonials-container {
        padding: 0 40px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        width: 100%;
    }
    
    .education-section h3,
    .certifications-section h3,
    .achievements-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .skills {
        flex-direction: column;
        align-items: center;
    }
    
    .skill {
        width: 100%;
        margin: 10px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
} 

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin: 0 auto;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-content {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .navbar {
        padding: 1.5rem 0;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Get in Touch Section Styles */
#contact {
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23007bff" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 1s ease;
}

.contact-info {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

.info-header {
    margin-bottom: 40px;
    position: relative;
}

.info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.info-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.info-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: white;
    color: #007bff;
    transform: scale(1.1);
}

.info-icon i {
    font-size: 1.2rem;
}

.info-details h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-details p {
    font-size: 1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #007bff;
    transform: translateY(-5px);
}

.contact-form {
    padding: 40px;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bff;
    transition: all 0.3s ease;
}

.form-group textarea + i {
    top: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.form-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea + label {
    top: 25px;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    background: white;
    padding: 0 5px;
    color: #007bff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00d2ff, #007bff);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-header h3 {
        font-size: 1.8rem;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .info-header h3 {
        font-size: 1.5rem;
    }
    
    .form-control {
        padding: 12px 12px 12px 40px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: #fff;
    padding-top: 100px;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
    animation: waveAnimation 20s linear infinite;
}

.wave1 {
    opacity: 0.3;
    animation-delay: 0s;
}

.wave2 {
    opacity: 0.2;
    animation-delay: -5s;
}

.wave3 {
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes waveAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.footer-info {
    grid-column: span 1;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

.footer-logo p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-description {
    margin: 20px 0;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.footer-links,
.footer-services,
.footer-newsletter {
    grid-column: span 1;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00d2ff, #007bff);
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.newsletter-form button:hover::before {
    left: 0;
}

.newsletter-form button i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: #007bff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-links h3,
    .footer-services h3,
    .footer-newsletter h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}