
body, html {
    margin: 0;
    padding: 0;
    background-color: black;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow-y: auto;
}


.intro-section {
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.mittim-logo {
    height: 100px;
    max-height: 100px;
    transition: all 0.3s ease-in-out;
}


.logo-animation .gore,
.logo-animation .dole,
.logo-animation .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}


.logo-animation .main-text {
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.logo-animation .mit {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: -20px;
}

.logo-animation .tim {
    font-size: 3.5rem;
    font-weight: bold;
    color: #800000; 
    transform: rotate(180deg);
    display: inline-block;
}


.logo-animation .brand {
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}


.fade-in {
    opacity: 0;
    animation: fadeIn 1.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar {
    background-color: black;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: #800000;
    border: 2px solid rgba(128, 0, 0, 0.5);
    background-color: transparent;
}


.footer {
    background-color: black;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 20px 0;
}
.footer .contact-info {
    text-align: center;
    margin-top: 10px;
}




.footer p {
    margin-bottom: 0.5rem;
}

.social-icons {
    margin-top: 10px;
}

.social-link {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #800000;
    border: 1px solid #800000;
    background-color: transparent;
}
.footer .copyright {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
}



.about-section {
    background-color: black;
    color: white;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #800000;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    text-align: center;
}

.about-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-section p {
    font-size: 1.1rem;
    margin: 0;
}

.about-section .lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f0f0f0;
    text-align: center;
}

.highlight {
    color: #800000;
    font-weight: bold;
}

.services-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}


.services-section {
   
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
}

.services-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.services-section h2 {
    color: #800000;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: left;
}

.services-section p,
.services-section ul,
.services-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}



.package-card {
    background-color: #3d0f0f;
    color: white;
    border: none;
    border-radius: 25px; 
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.package-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.6);
    background-color: #692525;
}

.package-card:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(128, 0, 0, 0.4);
}

.package-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.package-card h5 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.package-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #f8f8f8;
}

.why-us-section {
    background-color: black;
    padding: 80px 20px;
}

.why-us-section ul {
    list-style: none;
    padding-left: 0;
}

.why-us-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-us-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}


.why-us-section {
    background-color: black;
    padding: 80px 20px;
}

.why-us-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-us-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.why-us-image:hover {
    transform: scale(1.03);
}






.why-card {
    background: linear-gradient(135deg, #4a0505, #680f0f);
    color: white;
    border: none;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.why-card:hover {
    background: linear-gradient(135deg, #a00000, #c00000);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.6);
}

.check-icon {
    font-size: 1.8rem;
}


.form-control-dark,
.form-select.form-control-dark {
  background-color: #0f0f0f;
  color: #fff;
  border: 1px solid #333;
}

.form-control-dark::placeholder { color: #aaa; }

.form-control-dark:focus,
.form-select.form-control-dark:focus {
  background-color: #111;
  color: #fff;
  border-color: #800000;
  box-shadow: 0 0 0 .25rem rgba(128,0,0,.25);
}


