* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

h3{
    display: block;
}
.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f7c;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f7c;
}

/* Hero Section */
.hero {
    background-image: url("images/image1.png");
    background-size: cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
    height: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-content h2.subheading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0;
    opacity: 0.95;
    font-style: italic;
    display: block;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: block;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* MTI Section */
.mti {
    padding: 5rem 0;
    background: #5fa4cc;
    color: white;
}

.mti h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.mti .row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.mti .col-left {
    flex: 0 0 40%;
}

.mti .col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mti img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.mti .bio-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.mti .bio-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
}

.mti .info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: #333;
}

.mti .info-box h3 {
    font-size: 1.5rem;
    color: #2c5f7c;
    margin-bottom: 1rem;
    border-bottom: 2px solid #6ECDB5;
    padding-bottom: 0.5rem;
}

.mti .info-box h4 {
    font-size: 1.1rem;
    color: #2c5f7c;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.mti .info-box ul {
    list-style: none;
    padding-left: 0;
}

.mti .info-box ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mti .info-box ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #c8dd55;
    font-weight: bold;
}

.mti .hobbies-grid {
    display: grid;
    gap: 1rem;
}

.mti .hobbies-grid p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mti .hobbies-grid strong {
    color: #2c5f7c;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5f7c;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: #2c5f7c;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Feedback Form */
.feedback {
    padding: 5rem 0;
    background: #f8f9fa;
}

.feedback h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f7c;
}

.feedback > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c5f7c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ECDB5;
}

.form-group textarea {
    resize: vertical;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
    font-size: 2.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.star-rating input:checked ~ label {
    color: #ffc107;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact */
.contact {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-section {
    min-width: 150px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6ECDB5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #6ECDB5;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #6ECDB5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2.subheading {
        font-size: 1.3rem;
    }
    
    .mti .row {
        flex-direction: column;
    }
    
    .mti .col-left {
        flex: 1;
        width: 100%;
    }
    
    .mti img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .testimonial-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 2rem;
        justify-content: flex-start;
    }
    
    .footer-left h2 {
        font-size: 1.5rem;
    }
}
.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #1f2937;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  background: #22c55e;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.toast-text strong {
  font-size: 14px;
}

.toast-text div {
  font-size: 12px;
  opacity: 0.8;
}
