/* About Page Styles */

/* Banner Section */
.banner-section {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-section .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.banner-section:hover .bg-layer {
    transform: scale(1);
}

.banner-section .pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
    100% { transform: translate(0, 0); }
}

.banner-section .content-box {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.banner-section .sub-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-section h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.banner-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: fadeInUp 1.2s ease;
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-content .sec-title {
    margin-bottom: 40px;
}

.about-content .sub-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content .text p {
    margin-bottom: 25px;
    line-height: 1.9;
    color: #555;
    font-size: 17px;
}

.about-content .signature {
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.about-content .signature:hover {
    transform: scale(1.05);
}

.about-image {
    position: relative;
    padding: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    background: white !important;
    color: #000000 !important;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.experience-box:hover {
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

/* Mission Section */
.mission-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.mission-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-15px);
}

.mission-card:hover::before {
    opacity: 0.05;
}

.mission-card .icon-box {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.mission-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mission-card .icon-box i {
    font-size: 40px;
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-card p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    position: relative;
}

.team-card {
    margin-bottom: 40px;
    position: relative;
}

.team-card .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card .image-box img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-card:hover .image-box img {
    transform: scale(1.1);
}

.team-card .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .overlay {
    opacity: 1;
}

.team-card .social-links {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    transform: translateY(0);
}

.team-card .social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
}

.team-card .content {
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card .content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.team-card .content span {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
}

/* Achievements Section */
.achievements-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.achievement-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-card .count-box {
    margin-bottom: 20px;
}

.achievement-card .count-text {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.achievement-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-box {
    background: var(--primary-color);
    padding: 70px 50px;
    border-radius: 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.cta-box:hover::before {
    opacity: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-btn .theme-btn {
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn .theme-btn:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-section {
        padding: 100px 0;
    }

    .banner-section h2 {
        font-size: 42px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-image {
        margin-top: 50px;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 80px 0;
    }

    .banner-section h2 {
        font-size: 36px;
    }

    .mission-card {
        margin-bottom: 30px;
    }

    .achievement-card {
        margin-bottom: 30px;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .cta-btn {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .banner-section h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .team-card .content {
        padding: 20px;
    }
}

/** about-section **/

.about-section{
  position: relative;
}

.image_block_one .image-box{
  position: relative;
  display: block;
}

.image_block_one .image-box .image{
  position: relative;
  display: block;
  max-width: 488px;
}

.image_block_one .image-box .image img{
  width: 100%;
}

.image_block_one .image-box .image-content {
  position: absolute;
  right: 20px;
  bottom: 0px;
  width: 169px;
  background: #fff;
  border: dashed;
  border-width: 2px;
  padding: 24px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.08);
}

.image_block_one .image-box .image-content h2 {
  position: relative;
  display: block;
  font-size: 46px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}

.image_block_one .image-box .image-content h4 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 17px;
}

.image_block_one .image-box .image-shape .shape-1{
  position: absolute;
  left: 0px;
  bottom: 54px;
  width: 230px;
  height: 230px;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-animation: zoom-fade 6s infinite linear;
  animation: zoom-fade 6s infinite linear;
}

.image_block_one .image-box .image-shape .shape-2{
  position: absolute;
  top: 105px;
  right: 50px;
  z-index: 1;
  width: 172px;
  height: 172px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.content_block_one .content-box{
  position: relative;
  display: block;
}

.content_block_one .content-box .text-box p{
  margin-bottom: 30px;
}

.about-section .pattern-layer .pattern-1{
  position: absolute;
  left: -110px;
  bottom: 80px;
  width: 321px;
  height: 321px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 6s infinite linear;
  animation: zoom-fade 6s infinite linear;
}

.about-section .pattern-layer .pattern-2{
  position: absolute;
  left: 104px;
  top: 227px;
  width: 196px;
  height: 196px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.about-section .pattern-layer .pattern-3{
  position: absolute;
  right: 0px;
  bottom: 114px;
  width: 297px;
  height: 559px;
  background-repeat: no-repeat;
}


/** about-style-two **/

.about-style-two{
  position: relative;
}

.image_block_two .image-inner{
  position: relative;
  display: block;
}

.image_block_two .image-inner .image{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.image_block_two .image-inner .image img{
  width: 100%;
  border-radius: 10px;
}

.image_block_two .image-inner .image::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.image_block_two .image-inner .image:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.image_block_two .image-inner .image-box .image::before{
  width: 0%;
  height: 100%;
}

.image_block_two .image-inner .image-box .image:hover::before {
  width: 100%;
}

.image_block_two .image-inner .experience-box{
  position: relative;
  display: block;
  border-radius: 10px;
  box-shadow: 20px 0px 100px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1;
  background: #fff;
  min-height: 134px;
}

.image_block_two .image-inner .experience-box .inner{
  padding-left: 117px;
}

.image_block_two .image-inner .experience-box h2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 94px;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0px 10px 0px;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
  z-index: 1;
}

.image_block_two .image-inner .experience-box h2 span{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 26px;
  font-family: var(--text-font);
  font-weight: 500;
}

.image_block_two .image-inner .experience-box h2:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 6px;
  z-index: -1;
  opacity: 0.1;
}

.image_block_two .image-inner .experience-box h3{
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}

.image_block_two .image-inner .image-shape .shape-1{
  position: absolute;
  left: 100px;
  bottom: -20px;
  width: 108px;
  height: 140px;
  background-repeat: no-repeat;
}

.image_block_two .image-inner .image-shape .shape-2{
  position: absolute;
  top: 47px;
  right: 30px;
  width: 108px;
  height: 140px;
  background-repeat: no-repeat;
}

.about-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 356px;
  height: 762px;
  background-repeat: no-repeat;
}

.about-style-two .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 335px;
  height: 808px;
  background-repeat: no-repeat;
}


/** about-style-three **/

.about-style-three{
  position: relative;
}

.about-style-three .image_block_two .image-inner .experience-box{
  position: absolute;
  right: 0px;
  bottom: 50px;
  width: 330px;
  border-radius: 200px;
}

.about-style-three .image_block_two .image-inner .experience-box h2,
.about-style-three .image_block_two .image-inner .experience-box h2:before{
  border-radius: 50%;
}

.about-style-three .image_block_two .image-inner .experience-box h2{
  font-size: 42px;
  line-height: 40px;
  padding-top: 15px;
}

.about-style-three .image_block_two .image-inner .experience-box h2 span{
  font-size: 18px;
}

.about-style-three .pattern-layer .pattern-1{
  position: absolute;
  right: 0px;
  bottom: 160px;
  width: 297px;
  height: 559px;
  background-repeat: no-repeat;
}

.about-style-three .pattern-layer .pattern-2{
  position: absolute;
  left: -110px;
  bottom: 60px;
  width: 279px;
  height: 315px;
  background-repeat: no-repeat;
}

.about-style-three .pattern-layer .pattern-3{
  position: absolute;
  left: 110px;
  top: 210px;
  width: 170px;
  height: 190px;
  background-repeat: no-repeat;
}

.image_block_three .image-box{
  position: relative;
  display: block;
}

.image_block_three .image-box .image img{
  width: 100%;
}

.image_block_three .image-box .experience-box{
  position: absolute;
  left: 0px;
  bottom: 65px;
  width: 214px;
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image_block_three .image-box .experience-box .r-hex:first-child .r-hex-inner:before{
  transition: all 500ms ease;
}

.image_block_three .image-box .experience-box .r-hex{
  width: 245px;
  height: 214px;
  border-radius: 7px;
  left: -14px;
}

.image_block_three .image-box .experience-box h2{
  position: relative;
  display: block;
  font-size: 72px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.image_block_three .image-box .experience-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}

.image_block_three .image-box .small-image .image-1{
  position: absolute;
  left: 0px;
  top: 73px;
  border-radius: 50%;
}

.image_block_three .image-box .small-image .image-2{
  position: absolute;
  top: 10px;
  right: -25px;
  border-radius: 50%;
}

.about-style-three .pattern-layer .pattern-4{
  position: absolute;
  top: 87px;
  right: 111px;
  width: 170px;
  height: 190px;
  background-repeat: no-repeat;
}

.about-style-three .pattern-layer .pattern-5{
  position: absolute;
  right: -103px;
  bottom: 0px;
  width: 279px;
  height: 315px;
  background-repeat: no-repeat;
}


/** about-style-four **/

.about-style-four{
  position: relative;
}

.about-style-four .image_block_three .image-box .image{
  position: relative;
  display: block;
  border: solid;
  border-width: 10px;
  border-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 0px 54px 0px rgba(0, 0, 0, 0.15);
}

.about-style-four .image_block_three .image-box .image img{
  border-radius: 10px;
}

.about-style-four .image_block_three .image-box .image::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.about-style-four .image_block_three .image-box .image:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-style-four .image_block_three .image-box .image-2::before{
  width: 0%;
  height: 100%;
}

.about-style-four .image_block_three .image-box .image-2:hover::before {
  width: 100%;
}

.about-style-four .image_block_three .image-box .experience-box{
  width: 200px;
  height: 224px;
  left: 50%;
  margin-left: -100px;
  bottom: 162px;
  z-index: 9;
}

.about-style-four .image_block_three .image-box .experience-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 200px;
  height: 224px;
  background-repeat: no-repeat;
  background-position: center;
}

.about-style-four .pattern-layer .pattern-1{
  position: absolute;
  top: 50px;
  right: -194px;
  width: 401px;
  height: 384px;
  background-repeat: no-repeat;
}

.about-style-four .pattern-layer .pattern-2{
  position: absolute;
  left: 104px;
  top: 90px;
  width: 203px;
  height: 228px;
  background-repeat: no-repeat;
}

.about-style-four .pattern-layer .pattern-3{
  position: absolute;
  left: -110px;
  bottom: 100px;
  width: 279px;
  height: 315px;
  background-repeat: no-repeat;
}









































