.body {
    margin: 0;
    padding: 0;
}

a{
    border: none;
}

.header {
    padding-top: 50px;
}

.tagline{
    padding-top: 20px;
}

.tagline img, .logo img{
    width: 95%;
}

.contact-btn{
    font-family: "Roboto", serif;
    font-size: 15px;
    text-decoration: none;
    color: #9C2424;
    padding: 10px 50px;
    border: 1px solid #E84A4F;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #E84A4F;
    color: white;
    text-decoration: none;
}

.coming-soon-txt{
    color: #EA5756;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
}

.group img{
    width: 98%;
    height: auto;
}

.about-us{
    background-color: #FAF6F6;
    padding: 30px !important;
}

.about-us-txt{
    padding: 20px 50px !important;
}

.about-us h2{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 300;
    padding-bottom: 20px;
}

.about-us p{
    font-family: "Roboto", serif;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

.about-us p.vision-mission{
    font-family: "Prompt", serif;
    font-size: 15px;
    color: #000000;
}

.about-us img{
    width: 100%;
    height: auto;
}

.what-we-do{
    padding: 50px;
    display: flex;
    align-items: center;
}

.what-we-do .left h2{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 80px;
}

.what-we-do .right{
    border-left: 1px solid #545454;
    color: #626262;
    padding-left: 80px;
}

.what-we-do .right ul {
    list-style: none;
    padding: 0;
}

.what-we-do .right ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.what-we-do .right ul li:before {
    content: "•";
    color: #E84A4F;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-choose-us{
    padding: 50px;
    display: flex;
    align-items: center;
    background-color: #FAF6F6;
}

.why-choose-us h2{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 80px;
}

.why-choose-us p{
    font-family: "Roboto", serif;
    font-size: 15px;
    color: #000000;
    padding: 0;
    line-height: 25px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.why-choose-us ul li:before {
    content: "•";
    color: #E84A4F;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-sec{
    padding: 50px;
    display: flex;
    align-items: center;
}

.contact-sec h2{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 80px;
    margin-bottom: 30px;
}

.contact-sec .contact-form{
    padding: 0 80px;
}

.contact-sec .contact-form input[type='text'],
.contact-sec .contact-form input[type='email'],
.contact-sec .contact-form textarea{
    border: 0px;
    background: #faf6f6;
    padding: 15px;
    outline: none;
    margin-bottom: 15px;
    width: 100%;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-sec .contact-form input[type='text']:focus,
.contact-sec .contact-form input[type='email']:focus,
.contact-sec .contact-form textarea:focus {
    background: #f0f0f0;
    box-shadow: 0 0 5px rgba(232, 74, 79, 0.3);
}

.contact-sec .contact-form input[type='submit']{
    border: 0px;
    background: #E84A4F;
    color: white;
    padding: 15px 30px;
    outline: none;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.03rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-sec .contact-form input[type='submit']:hover {
    background: #9C2424;
    transform: translateY(-2px);
}

.contact-sec .contact-form textarea{
    resize: none;
    height: 150px;
}

.contact-info .email a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.contact-info .email {
    padding-bottom: 50px;
    border-bottom: 2px solid #eeeeee;
    font-size: 20px;
}

.contact-info .address {
    padding-top: 50px;
    font-size: 15px;
}

.contact-info{
    padding: 0 80px 0 0 !important;
}

footer{
    border-top: 2px solid #eeeeee;
    text-align: center;
    font-family: 'Roboto';
    padding: 30px 0;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
    .header {
        padding-top: 30px;
    }
    
    .tagline {
        padding-top: 15px;
        text-align: center;
    }
    
    .logo {
        text-align: center;
    }
    
    .contact-btn {
        padding: 8px 30px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .about-us-txt {
        padding: 20px 30px !important;
    }
    
    .about-us h2,
    .what-we-do .left h2,
    .why-choose-us h2,
    .contact-sec h2 {
        font-size: 40px;
        padding-left: 40px;
    }
    
    .what-we-do,
    .why-choose-us,
    .contact-sec {
        padding: 40px 30px;
    }
    
    .what-we-do .right,
    .why-choose-us .right {
        padding-left: 40px;
    }
    
    .contact-sec .contact-form {
        padding: 0 40px;
        margin-bottom: 30px;
    }
    
    .contact-info {
        padding: 0 40px !important;
    }
    
    .coming-soon-txt {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding-top: 20px;
        text-align: center;
    }
    
    .tagline {
        padding-top: 10px;
        margin-bottom: 20px;
    }
    
    .logo img,
    .tagline img {
        width: 80%;
        max-width: 200px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 13px;
        margin-top: 15px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .coming-soon-txt {
        font-size: 14px;
        padding: 15px 10px;
        line-height: 1.5;
    }
    
    .group {
        margin-bottom: 20px;
    }
    
    .group img {
        width: 100%;
        max-width: 250px;
    }
    
    .about-us {
        padding: 20px 15px !important;
        text-align: center;
    }
    
    .about-us-txt {
        padding: 20px 15px !important;
        margin-bottom: 20px;
    }
    
    .about-us h2,
    .what-we-do .left h2,
    .why-choose-us h2,
    .contact-sec h2 {
        font-size: 32px;
        padding-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-us p {
        font-size: 14px;
        text-align: left;
    }
    
    .what-we-do,
    .why-choose-us,
    .contact-sec {
        padding: 30px 15px;
        text-align: center;
    }
    
    .what-we-do .left,
    .why-choose-us .left {
        margin-bottom: 20px;
    }
    
    .what-we-do .right,
    .why-choose-us .right {
        padding-left: 0;
        border-left: none;
        text-align: left;
    }
    
    .what-we-do .right ul li,
    .why-choose-us ul li {
        padding-left: 15px;
        font-size: 14px;
    }
    
    .contact-sec .contact-form {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .contact-sec .contact-form input[type='text'],
    .contact-sec .contact-form input[type='email'],
    .contact-sec .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-sec .contact-form input[type='submit'] {
    padding: 12px 25px;
    font-size: 13px;
    width: 100%;
    max-width: 200px;
}
    
    .contact-info {
        padding: 0 15px !important;
        text-align: center;
    }
    
    .contact-info .email {
        font-size: 16px;
        padding-bottom: 30px;
    }
    
    .contact-info .address {
        padding-top: 30px;
        font-size: 14px;
    }
    
    footer {
        padding: 20px 0;
        font-size: 14px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .about-us h2,
    .what-we-do .left h2,
    .why-choose-us h2,
    .contact-sec h2 {
        font-size: 28px;
    }
    
    .about-us p {
        font-size: 13px;
    }
    
    .what-we-do .right ul li,
    .why-choose-us ul li {
        font-size: 13px;
    }
    
    .contact-sec .contact-form input[type='text'],
    .contact-sec .contact-form input[type='email'],
    .contact-sec .contact-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .contact-sec .contact-form input[type='submit'] {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .coming-soon-txt {
        font-size: 13px;
    }
}

/* Bootstrap Alert Styles for Contact Form */
.alert {
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Smooth transitions for better UX */
* {
    transition: all 0.3s ease;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Fix for Bootstrap grid on very small screens */
@media (max-width: 575px) {
    .col-md-3,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}