* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;

}


body {
    font-family: "Open Sans", sans-serif; 
    color: #fff;
    background-color: #13111d;
    line-height: 1.7;
    font-size: 20px;
}

section {
    padding: 100px 10%;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
}

a {
    color: #00bcd4;
    text-decoration: none;
}


/* --- Header & Navigation --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo a {
    font-size: 28px;
    font-weight: 900;
    color: #ffae00;
}


.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu ul li a {
    color: #fff;
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-menu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #00bcd4;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #00bcd4;
    cursor: pointer;
}


/* --- Home Section --- */
#home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    gap: 50px;
}

#home .left {
    flex: 1.2;
}

#home .content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
}

#home .content h1 {
    font-size: 72px;
    font-weight: 900;
    color: #00bcd4;
    line-height: 1.1;
    margin-bottom: 15px;
}

#home .content .subtitle {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    color: #ffae00;
    margin-bottom: 25px;
}

#home .content p {
    font-size: 20px;
    color: #ddd;
    max-width: 600px;
    margin-bottom: 30px;
}

#home .right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .image img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid #ffae00;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

#home .image img:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 0 50px rgba(255, 174, 0, 0.7);
}


/* --- General Section Header --- */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 48px;
    color: #00bcd4;
    margin-bottom: 10px;
    font-weight: 900;
}

.header p {
    color: #ccc;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}


/* --- About Section --- */
#about {
    background-color: #00000027;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.skills-section h2, .credentials h1 {
    text-align: center;
    font-size: 36px;
    color: #00bcd4;
    margin-bottom: 40px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.skill {
    background: #1a1a1a;
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.skill i {
    font-size: 32px;
    color: #00bcd4;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.skill h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.skill:hover {
    background-color: #ffae00;
    transform: translateY(-10px);
}

.skill:hover i {
    transform: scale(1.2);
    color: #111;
}

.skill:hover h3 {
    color: #111;
}

.credentials .education {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #333;
}

.credentials .education ul {
    list-style: none;
}

.credentials .education li {
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.credentials .education li::before {
    content: "🎓";
    position: absolute;
    left: 0;
    font-size: 20px;
}


/* --- Projects & Services Section --- */
#projects, #services, #testimonials {
    background-color: #00000027;
}
.projects-list, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project, .service {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.project:hover, .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px #00bcd4aa;
}

.project-image img {
    width: 110%;
    height: 200px;
    object-fit: cover;
}

.project-info, .service {
    padding: 40px;
}

.project-title, .service-title {
    font-size: 24px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.project-desc {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.primary-btn, .view-more-btn {
    background-color: #00bcd4;
    color: #111;
}

.primary-btn:hover, .view-more-btn:hover {
    background-color: #ffae00;
    color: #111;
    transform: scale(1.05);
}


#testimonials {
    padding-top: 50px;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px #00bcd4aa;
}

.client-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.client-card {
    background: #1a1a1a;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #00bcd4;
}

.client-card h3 {
    color: #ffae00;
    font-size: 22px;
}

.client-designation {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 15px;
}

.client-feedback {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}


#contact {
    background-color: #00000027;
}

.contact-form-wrapper:hover {
    box-shadow: 0 10px 30px #00bcd4aa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00bcd4;
}

.contact-info .subtitle {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    color: #ffae00;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 12px;
}
.contact-item span, .contact-item a {
    color: #ddd;
}
.contact-item i {
    font-size: 20px;
    color: #00bcd4;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #1a1a1a;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
}

.social-link i {
    font-size: 20px;
}

.social-link:hover {
    background-color: #ffae00;
    color: #111;
}

.contact-form-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0a0a0a;
    color: #fff;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.form-submit-btn {
    width: 100%;
    font-size: 18px;
    padding: 15px;
}


footer {
    background: #0a0a0a;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #222;
}

footer p {
    color: #888;
    font-size: 16px;
}


/* --- Responsiveness --- */
@media (max-width: 1024px) {
    #home {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    #home .left {
        order: 2;
    }

    #home .right {
        order: 1;
        margin-bottom: 40px;
    }
    
    #home .content h1 {
        font-size: 58px;
    }

    #home .image img {
        width: 350px;
        height: 350px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    section {
        padding: 80px 5%;
    }
    
    nav {
        padding: 15px 5%;
    }

    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%; 
    max-width: 320px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95); 
    backdrop-filter: blur(10px); 
    box-shadow: -5px 0px 30px rgba(0,0,0,0.5);
    transition: right 0.4s ease-in-out;
    padding-top: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
}

    .nav-menu.active {
        right: 0; 
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-menu ul li a {
        font-size: 24px;
    }
    
    .close-icon {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .header h1, .contact-info h1 {
        font-size: 38px;
    }
    .header p {
        font-size: 16px;
    }

    #home .content h1 {
        font-size: 42px;
    }
    #home .content h2 {
        font-size: 24px;
    }
    #home .content .subtitle {
        font-size: 20px;
    }
    #home .image img {
        width: 280px;
        height: 280px;
    }
    
    .skills-section h2, .credentials h1 {
        font-size: 30px;
    }
    .credentials .education li {
        font-size: 18px;
    }
    .social-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
}



* {
  box-sizing: border-box;
}

.center {
  text-align: center;
}

.albums {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.albums a {
  background: #00bcd4;
  color: #000;
  padding: 16px;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
}

/* Gallery */
.gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.card {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.card img,
.card video {
  width: 100%;
  border-radius: 8px;
}

.card button {
  margin-top: 6px;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: #000;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .albums {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

