.hero_title {
    font-size: 45px;
}

/* Enhanced Hero Image Styling */
.optech-hero-thumb {
    position: relative;
    overflow: visible;
    padding: 20px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hero-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

/* Decorative shapes */
.hero-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(111, 193, 255, 0.2), rgba(111, 193, 255, 0.05));
    border-radius: 50%;
    top: -40px;
    left: -60px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(111, 193, 255, 0.15), rgba(111, 193, 255, 0.03));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -30px;
    right: -40px;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

/* Floating dots */
.floating-dot {
    position: absolute;
    border-radius: 50%;
    background-color: #6fc1ff;
    z-index: 3;
}

.dot-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    right: -15px;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.dot-2 {
    width: 15px;
    height: 15px;
    bottom: 25%;
    left: -20px;
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
}

.dot-3 {
    width: 8px;
    height: 8px;
    top: -15px;
    left: 30%;
    opacity: 0.6;
    animation: float 5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Director Photo Enhanced Styling */
.director-photo-container {
    position: relative;
    overflow: visible;
    padding: 20px;
    margin-bottom: 40px;
}

.director-image-wrapper {
    position: relative;
    z-index: 3;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.director-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.director-main-image {
    width: 130%;
    height: auto;
    display: block;
    transition: all 0.7s ease;
    filter: brightness(1.05) contrast(1.05);
}

.director-image-wrapper:hover .director-main-image {
    transform: scale(1.03);
}

/* Decorative accent elements */
.director-accent-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 4px solid rgba(111, 193, 255, 0.3);
    border-radius: 50%;
    top: -30px;
    left: -50px;
    z-index: 1;
    animation: spin 20s linear infinite;
}

.director-accent-square {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(111, 193, 255, 0.2);
    bottom: 40px;
    right: 0;
    z-index: 1;
    transform: rotate(30deg);
    animation: rotate 15s ease-in-out infinite alternate;
}

/* Animated highlight bars */
.highlight-bar {
    position: absolute;
    height: 6px;
    background: linear-gradient(90deg, #6fc1ff, rgba(111, 193, 255, 0.3));
    border-radius: 6px;
    z-index: 2;
}

.bar-1 {
    width: 120px;
    top: 15%;
    right: -20px;
    animation: width-pulse 4s ease-in-out infinite;
}

.bar-2 {
    width: 80px;
    bottom: 25%;
    left: -15px;
    animation: width-pulse 6s ease-in-out infinite reverse;
}

/* Enhanced original shapes */
.enhanced-shape {
    transition: all 0.5s ease;
}

.optech-shape1.enhanced-shape {
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.optech-shape2.enhanced-shape {
    z-index: 2;
    animation: float 6s ease-in-out infinite reverse;
}

/* Tech-themed overlay elements */
.tech-overlay-element {
    position: absolute;
    z-index: 2;
}

.tech-circle {
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(111, 193, 255, 0.5);
    border-radius: 50%;
    bottom: 10%;
    right: 15%;
    animation: spin 15s linear infinite;
}

.tech-dots {
    width: 40px;
    height: 80px;
    background-image: radial-gradient(circle, #6fc1ff 2px, transparent 3px);
    background-size: 15px 15px;
    top: 20%;
    left: 10%;
    opacity: 0.6;
    animation: float 7s ease-in-out infinite;
}

/* Additional animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@keyframes width-pulse {
    0% {
        width: 100%;
        opacity: 0.7;
    }
    50% {
        width: 70%;
        opacity: 0.9;
    }
    100% {
        width: 100%;
        opacity: 0.7;
    }
}

@media (max-width: 1400px) {
    .hero_title,
    h1 {
        font-size: 40px !important;
    }
}
@media (max-width: 1199px) {
    .hero_title,
    h1 {
        font-size: 38px !important;
    }
}
@media (max-width: 991px) {
    .hero_title,
    h1 {
        font-size: 35px !important;
    }
}
@media (max-width: 767px) {
    .hero_title,
    h1 {
        font-size: 30px !important;
    }
    .hero_description {
        font-size: 16px !important;
    }
}


.optech-breadcrumb {
    padding: 200px 0 70px;
}

.optech-service-menu li.active a {
    color: #fff;
    background-color: #0a165e;
}

.post__title {
    font-size: 50px;
}


footer.dark-bg ul li a {
    color: #ced0df !important;
}

footer.dark-bg h5 {
    color: #fff !important;
}

footer.dark-bg i {
    color: #fff !important;
}

footer.dark-bg .social_links li a {
    background: #1e2656 !important;
}

.attachment__caption {
    display: none;
}

.social_icon p {
    font-size: 13px;
}

.social_icon .partner-row {
    padding: 0.5rem;
}

.optech-numberbox-icon {
    margin-bottom: 5px;
}

.optech-service-details-wrap img {
    margin-bottom: 20px;
}
