.zigzag-section {
    width: 100%;
    /* padding: 80px 20px; */
    overflow: hidden;
    position: relative;
}
.zigzag-image {
    position: relative;
    /* text-align: center; */
}
.zigzag-image img.main-img {
    width: auto;
    /* height: 488px; */
}
.zigzag-image img.ring-circle {
   width: auto;
   height:auto;
   position: absolute;
   left: 50px;
}
.zigzag-image img.star-circle {
   width: auto;
   height:auto;
   position: absolute;
   left: 1200px;
   bottom:300px;
   z-index: -1;
}
/* ROTATING CIRCLE */
.zigzag-circle {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zigzag-circle::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite;
}

.zigzag-circle span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

@keyframes rotateCircle {
    100% {
        transform: rotate(360deg);
    }
}

/* BUTTON */
.zigzag-btn {
  display:inline-block;
  position: relative;
}
.zigzag-btn .btn-text {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:#fff;
    font-size:18px;
}
/* RESPONSIVE */

@media (max-width: 991px) {

    .zigzag-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .zigzag-content {
        max-width: 100%;
        text-align: center;
    }

    .zigzag-content p {
        /* margin-left: auto; */
        /* margin-right: auto; */
        /* text-align: center; */
    }

    .zigzag-content h2 {
        font-size: 40px;
        font-weight: 800px;
        gap:50px;
        margin-top: 20px;
    }

    .zigzag-image img {
        max-width: 300px;
        height: auto !important;
    }
}



.content-block-pattern {
    /* width: 100%; */
    /* text-align: left; */
    /* box-sizing: border-box; */
    /* margin-left: 70px; */
    margin-top: 30px;
}

/* Force every paragraph and text line to start at 0 indentation */
.content-block-pattern p {
    text-align: left !important;
   
    padding-left: 0 !important;
    text-indent: 0 !important;
    margin-top: 0px !important;
    /* margin-bottom: 16px; */
}
    

/* Section heading for Board of Directors */
.content-block-pattern .section-title {
    font-weight: bold;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Clean list offset spacing */
.aligned-board-list {
    list-style-type: disc; /* Clean circular bullets */
    padding-left: 24px;    /* Pulls bullets slightly right while keeping text aligned */
    margin-left: 0;
    margin-bottom: 24px;
}

.aligned-board-list li {
    text-align: left;
    color: #e0e0e0;
    font-family: 'Century Gothic', AppleGothic, sans-serif;
    font-size: 15px;
    margin-bottom: 8px;
    margin-top: -10px;
}

/* Contact Footer Area alignment styling */
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns all text blocks directly to the left wall */
    gap: 4px;
     margin-top: -15px;
   
}

.contact-block a {
    color: #ffffff;
    text-decoration: underline;
    font-family: 'Century Gothic', sans-serif;
    font-size: 15px;
   
}

.contact-block .phone-item {
    color: #e0e0e0;
    font-family: 'Century Gothic', sans-serif;
    font-size: 15px;
}

.contact-block address {
    font-style: normal;
    color: #e0e0e0;
    font-family: 'Century Gothic', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 4px;
}
.about-container {
    width: 80%;
    margin: auto;
}

@media (max-width: 991px)  {
    .about-container {
    width: 100%;
}
}
.about-main-section {
    position: relative;
    
}
.about-main-section .star-box-7 {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-main-section .star-box-7 img {
   position: unset !important;

}