* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-content {
  text-align: center;
}


.loader-title{
    font-size:38px;
    font-weight:700;
    letter-spacing:3px;
    color:#b36a5e;
    font-family:'Georgia' , serif;
    margin-bottom:25px;
 animation:textFadeUp 1.8s ease-in-out infinite;
}

@keyframes textFadeUp{
    0%{
        opactiy:0;
        transform: translateY(15px);
    }
    50%{
        opacity:1;
        transform: translateY(0);
    }
    100%{
        opacity:0;
        transform: translateY(-15px);
    }
}
/*.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #c89f9c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}*/

/*@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}*/




.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top:70px;
    margin-top: 0;
    padding-top: 0;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}


@keyframes slide {
    0% { margin-left: 0; }
    33% { margin-left: 0; }
    38% { margin-left: -100%; }
    66% { margin-left: -100%; }
    71% { margin-left: -200%; }
    100% { margin-left: -200%; }
}


.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #eee2df;
}

.slider-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
}

.hero-btn {
    text-decoration: none;
    padding: 12px 30px;
    background-color: #b36a5e;
    color: #eee2df;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #c89f9c;
}



.about {
    padding: 90px 120px;
    background-color: #fff;
}


.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header span {
    letter-spacing: 3px;
    font-size: 14px;
    color: #b36a5e;
}

.about-header h1 {
    font-size: 36px;
    margin: 15px 0;
    color: #333;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #c89f9c;
    margin: 20px auto;
}


.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}


.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    color: #b36a5e;
}


.about-image img {
    width: 420px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #b36a5e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn:hover {
    background-color: #c89f9c;
}



.core-section {
    padding: 100px 120px;
    background-color: #eee2df;
}

.core-header {
    text-align: center;
    margin-bottom: 80px;
}

.core-header .brand {
    letter-spacing: 4px;
    color: #b36a5e;
    font-size: 14px;
}

.core-header h1 {
    font-size: 40px;
    margin: 15px 0;
    color: #333;
    font-weight: 500;
}

.header-line {
    width: 120px;
    height: 3px;
    background-color: #b36a5e;
    margin: 25px auto;
}

.core-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.core-card {
    background-color: #fff;
    width: 330px;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.core-card:hover {
    transform: translateY(-8px);
    border: 2px solid #bc8c80;

}

.core-card h2 {
    font-size: 30px;
    color: #b36a5e;
    font-weight: 400;
}

.card-line {
    width: 40px;
    height: 3px;
    background-color: #c89f9c;
    margin: 15px 0 25px;
}

.core-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}


.expertise {
    padding: 100px 120px;
    background-color: #ffffff;
}

.expertise-header {
    text-align: center;
    margin-bottom: 70px;
}

.expertise-header span {
    letter-spacing: 4px;
    font-size: 14px;
    color: #b36a5e;
}

.expertise-header h1 {
    font-size: 40px;
    margin: 15px 0;
    color: #333;
}

.header-line {
    width: 120px;
    height: 3px;
    background-color: #b36a5e;
    margin: 25px auto;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 12px 25px rgba(179, 106, 94, 0.18),
        0 6px 12px rgba(200, 159, 156, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 45px rgba(179, 106, 94, 0.28),
        0 10px 20px rgba(200, 159, 156, 0.25);
        border: 2px solid #bc8c80;

}

.expertise-card img {
    width: 100%;
    height: 210px;
    image-size: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.card-line {
    width: 45px;
    height: 3px;
    background-color: #c89f9c;
    margin-bottom: 18px;
}

.card-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.card-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #b36a5e;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.card-btn:hover {
    background-color: #c89f9c;
}


.services {
    padding: 100px 120px;
    background-color: #eee2df;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header span {
    letter-spacing: 4px;
    font-size: 14px;
    color: #b36a5e;
}

.services-header h1 {
    font-size: 40px;
    margin: 15px 0;
    color: #333;
}

.header-line {
    width: 120px;
    height: 3px;
    background-color: #b36a5e;
    margin: 25px auto;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
}

.service-box {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 20px 7px;
    min-height: 130px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}


.service-box i {
    font-size: 30px; 
    color: #c89f9c;
    margin-bottom: 11px;
}

.box-line {
    width: 40px;
    height: 3px;
    background-color: #b36a5e;
    margin: 15px auto;
}
.service-box p {
    font-size: 14.5px;
    color: #333;
    line-height: 1.4;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(179, 106, 94, 0.25),
        0 8px 18px rgba(200, 159, 156, 0.25);
        border: 2px solid #bc8c80;

}

.contact-section {
    background: #f7f2f1;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #b36a5e;
    margin-bottom: 10px;
}

.contact-section p {
    color: #555;
    margin-bottom: 30px;
}

#contactForm {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b36a5e;
}

button {
    background: #b36a5e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: #9f5a50;
}

#formMsg {
    margin-top: 15px;
    font-weight: 500;
}


.new-footer {
    background-color: #ffffff;
    padding-top: 80px;
    color: #333;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding: 0 120px 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #b36a5e;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #b36a5e;
}

.footer-col.brand h2 {
    font-size: 32px;
    color: #b36a5e;
    margin-bottom: 15px;
}

.footer-col.brand span {
    color: #b36a5e;
}

.footer-col.brand p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.footer-col p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #555;
}

.footer-col i {
    color: #b36a5e;
    margin-right: 8px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social i {
    font-size: 18px;
    margin-right: 14px;
    cursor: pointer;
    color: #c89f9c;
    transition: 0.3s;
}

.footer-social i:hover {
    color: #b36a5e;
}

.footer-bottom {
    background-color: rgba(179, 106, 94, 0.9);
    text-align: center;
    padding: 22px 0;
    color: #eee2df;
    font-size: 14px;
}




@media (max-width: 1200px) {
    .about,
    .core-section,
    .expertise,
    .services {
        padding: 80px 60px;
    }
}

@media (max-width: 992px) {

    .slider-content h1 {
        font-size: 38px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 90%;
    }

    .core-cards {
        flex-direction: column;
        align-items: center;
        width:100%;
    }

    .expertise-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .slider {
        height: 30vh;        
        min-height: 100px;    
    }
    
    .slider-content h1 {
        font-size: 28px;
    }

    .slider-content p {
        font-size: 14px;
    }

    .about,
    .core-section,
    .expertise,
    .services {
        padding: 60px 25px;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
    }
    .core-section{

    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
