@import url('assets/css/color.css');
@import url('assets/css/image.css');
@import url('assets/css/font.css');
@import url('assets/css/rtl.css');
@import url('assets/css/card.css');
@import url('assets/css/link.css');
@import url('assets/css/header.css');
@import url('assets/css/footer.css');
@import url('assets/css/general.css');
@import url('assets/css/block.css');
@import url('assets/css/responsive.css');

body {
    overflow-x: hidden;
    background-color: #FFF6E7;
  }
  

/* Vision Section */
.vision {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
}

.vision .shape {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.vision .content {
    padding: 50px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision .title {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-color);
}


@media (max-width: 991px) {
    .vision .shape {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .vision .content {
        padding: 0 20px;
        
    }
    
    .vision .title {
        font-size: 36px;
    }
    
    .vision .text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .vision {
        padding: 25px 0;
    }
    
    .vision .shape {
        height: 300px;
    }
    
    .vision .title {
        font-size: 28px;
    }
    
    .vision .text {
        font-size: 18px;
    }
}

/* Our Chairman Section */
.block.our-chairman {
    position: relative;
    padding: 70px 0;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    
    overflow: hidden;
}


.block.our-chairman .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray);
    z-index: 1;
    border-radius: 0;
}

.block.our-chairman .container {
    position: relative;
    z-index: 2;
}

.block.our-chairman .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--main-color);
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.block.our-chairman .section-badge:hover {
    transform: translateY(-3px);
}

.block.our-chairman .content-wrapper {
    position: relative;
}

.block.our-chairman .title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.block.our-chairman .chairman-image {
    position: relative;
    width: 100%;
    height: 676px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.block.our-chairman .chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.block.our-chairman .chairman-image:hover img {
    transform: scale(1.08);
}

.block.our-chairman .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.block.our-chairman .image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    z-index: 2;
}

.block.our-chairman .content {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.block.our-chairman .content * {
    color: #eee;
}

.block.our-chairman .quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.block.our-chairman .name-wrapper {
    margin-top: 30px;
    padding-left: 30px;
    border-left: 3px solid var(--main-color);
}

.block.our-chairman .name {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.block.our-chairman .position {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .block.our-chairman {
        padding: 50px 0;
    }
    
    .block.our-chairman .title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .block.our-chairman .chairman-image {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .block.our-chairman .content {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .block.our-chairman .name {
        font-size: 1.6rem;
    }
}
/* end Our Chairman Section */

/* Gallery Section */
.gallary {
    padding: 100px 0;
}

.gallary .row {
    margin: 0 -15px;
}

.gallary .shape-one,
.gallary .shape-two {
    width: 100%;
    aspect-ratio: 1.14;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.gallery-item {
    width: 100%;
    padding-bottom: 100%; /* This creates a square aspect ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .our-chairman .content * {
        font-size: 13px;
        line-height: normal;
      }
      .our-chairman .title, .location .title span{
        font-size: 22px;
        
    }
}

@media (max-width: 991px) {
    .gallary {
        padding: 60px 0;
    }
    
    .gallary .shape-one,
    .gallary .shape-two {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .gallary {
        padding: 40px 0;
    }
    .gallary .title {
        font-size: 18px;
    }
    
    .gallary .shape-one,
    .gallary .shape-two {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 15px;
    }
}

/* Positioning Section */
.positioning {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: url('./assets/images/Image_fx3.jpg') no-repeat center center fixed;
    background-size: cover;
}

.positioning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.positioning .container * {
    position: relative;
    z-index: 1;
    color: #eee;
}

.positioning .fixed-bg {
    display: none;
}
.positioning .charsAnimIn {
    color: #fff !important;
}

.positioning .title {
    font-size: 48px;
    margin-bottom: 60px;
    color: #fff;
}

.position-card {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-10px);
}

.position-card .number {
    font-size: 36px;
color: rgb(255 255 255 / 39%);
margin-bottom: 20px;
}

.position-card .subtitle {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.position-card .content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .positioning {
        padding: 60px 0;
    }
    
    .positioning .title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .position-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .positioning {
        padding: 40px 0;
    }
    
    .positioning .title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .position-card {
        margin-bottom: 20px;
    }
}

/* Location Section */
.block.location {
    padding: 50px 0;
    background: #FFF6E7;
}

.block.location .title {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.block.location .map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.block.location .custom-map {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 991px) {
    .block.location {
        padding: 30px 0;
    }
    
    .block.location .title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/* end Location Section */

/* Footer Styles */
.footer {
    background: var(--gray);
    color: #ffffff;
    padding: 10x 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.footer-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.footer-widget {
    margin-bottom: 30px;
    text-align: center;
}

.footer-widget .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    color: var(--main-color);
}

.footer-widget .title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ffffff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/*section contact form to home page start */

#map {
      width: 100%;
      height: 500px;
    }
        
.contact-page {
    background: #fff;
}

.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #FFF6E7 0%, #fff 100%);
    text-align: center;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
    background: #fff;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.page-contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 20px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
}

.contact-list a:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateX(10px);
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--main-color);
    transition: color 0.3s ease;
}

.contact-list a:hover i {
    color: #fff;
}

.contact-list > div:nth-of-type(2) {
  display: none;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .main-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 40px 0;
    }

    .form-card,
    .page-contact-info {
        padding: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }
    .information-card {
        margin-top:40px
    }
}

@media (max-width: 576px) {
    .form-card,
    .page-contact-info {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/*section contact form to home page end */

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
        margin:14px;

}

.contact-info a i {
    margin: 0 10px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.footer-logo-wrapper {
    text-align: center;
    margin: -100px 0;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}



.footer-bottom {
    
    padding: 20px 0;
    
}
.copyright a {
    color: #eee !important;
}

.copyright {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
   
}

.copyright a {
    color: #ffffff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget .title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info a {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

.footer-widget img {
    max-width: 100%;
    height: auto;
}

.shape-three  {
    width: 100%;
    background: var(--orange);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    aspect-ratio: 1.25;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 38px;
}

@media (max-width: 991px) {
    .shape-three {
        margin-bottom: 30px;
        background-position: 17px;
    }
}

/* Our Development Section */
.our-development {
    position: relative;
    overflow: hidden;
}

.development-wrapper {
    position: relative;
    width: 100%;
    padding: 50px;
    border-radius: 50%;
    background: transparent;
}

.project-image {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
    border-radius: 30px;
}

.project-image:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.project-image:hover .overlay {
    opacity: 0.8;
}

 .content-our-development {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.logo-wrapper {
    margin-bottom: 30px;
}

.project-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.project-image:hover .project-logo {
    transform: scale(1.1);
}

.slogan h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.project-image:hover .slogan h3 {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .project-image {
        height: 60vh;
    }
    
    .slogan h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .project-image {
        height: 50vh;
    }
    
    .project-logo {
        max-width: 150px;
    }
    
    .slogan h3 {
        font-size: 1.5rem;
    }
    .development-wrapper {
        padding: 25px;
    }
    
}

.section-title {
    color: #333333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: scale(1.05);
    color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #333333, #666666);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

@media (max-width: 991px) {
    .our-development {
        padding: 60px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .section-title:hover::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .our-development {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .section-title:hover::after {
        width: 60px;
    }
}

















/* shape */
.shape-one {
    width: 80%;
    height: 80%;
    aspect-ratio: 1.25;
    background: url('<?php echo get_template_directory_uri()?>') center/cover no-repeat;
    margin-top:30px;
    border-radius:50% 50% 0 0  ;
}

        @media (max-width: 991px) {
                .shape-one {
                   margin-bottom: 30px;
                    }
                }

        .shape-one,
        .shape-two,
        .shape-three,
        .shape{
        transition: transform 0.5s ease;
        }
        .shape-one:hover,
        .shape-two:hover,
        .shape-three:hover,
        .shape:hover {
        transform: scale(1.08);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09); 
        }
/* End shape */

/* scroll-indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.4;
}

.scroll-circle {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(30px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* end scroll-indicator */