@media (max-width: 1120px) {}

@media (max-width: 992px) {
  .hero_area {
    min-height: auto;
  }

  .navbar-nav {
    align-items: center;
  }

  .custom_nav-container .navbar-toggler {
    margin-bottom: 15px;
  }

  .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding: 10px 25px;
    margin: 5px 0;
  }

  .custom_nav-container.navbar-expand-lg .form-inline {
    justify-content: center;
  }

  .custom_nav-container.navbar-expand-lg {
    padding-top: 10px;
    align-items: center;
  }

  .slider_section {
    padding: 45px 0 150px 0;
  }

  .sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .slider_section ol.carousel-indicators {
    justify-content: center;
  }

  .slider_section {
    text-align: center;
  }

  .slider_section .img-box {
    margin-top: 35px;
  }

  .slider_section .detail-box .btn-box {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about_section .heading_container {
    margin-bottom: 0;
  }

  .about_section .row {
    flex-direction: column-reverse;
  }

  .about_section .detail-box {
    margin-left: 0;
    width: 100%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  }

  .service_section .service_container {
    flex-wrap: wrap;
  }

  .client_section .carousel_btn-box {
    margin-top: 25px;
  }

  .client_section .carousel-control-prev,
  .client_section .carousel-control-next {
    position: unset;
    transform: none;
    margin: 0 2.5px;
  }

  .info_section .row .col-md-3 {

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

  }

  .info_section .info_logo {
    align-items: center;
  }

  .info_section .info_form .social_box {
    justify-content: center;
  }

  .info_section .info_form .social_box a {
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .header_top a span {
    display: none;
  }

  .slider_section .detail-box h1 {
    font-size: 2.5rem;
    line-height: 55px;
  }
}

@media (max-width: 480px) {}

@media (max-width: 420px) {}

@media (max-width: 376px) {}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Keyframes for animations */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* CEO Bio Section - Responsive Styles */

/* Tablet Portrait and Below */
@media (max-width: 991px) {
  .ceo_section {
    padding: 60px 0;
  }
  
  .ceo_image_wrapper {
    float: none;
    margin: 0 auto 30px auto;
    display: block;
    width: 300px;
    height: 300px;
  }
  
  .ceo_title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .ceo_position {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .ceo_bio_content {
    padding: 30px 20px;
    text-align: center;
  }
  
  .ceo_bio_text {
    font-size: 1rem;
    text-align: center;
  }
  
  .ceo_achievements {
    margin-top: 30px;
  }
  
  .achievement_item {
    justify-content: center;
    text-align: center;
  }
  
  .social_links {
    text-align: center;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .ceo_section {
    padding: 50px 0;
  }
  
  .ceo_container {
    padding: 0 15px;
  }
  
  .ceo_image_wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px auto;
  }
  
  .ceo_title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .ceo_position {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .ceo_bio_content {
    padding: 20px 15px;
  }
  
  .ceo_bio_text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }
  
  .ceo_bio_text p {
    margin-bottom: 12px;
  }
  
  .ceo_achievements {
    padding: 15px;
    margin-top: 25px;
  }
  
  .ceo_achievements h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .achievement_item {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  .achievement_item i {
    font-size: 1rem;
    margin-right: 8px;
  }
  
  .social_links {
    margin-top: 25px;
  }
  
  .social_links a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 8px;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .ceo_section {
    padding: 40px 0;
  }
  
  .ceo_section::before {
    display: none; /* Hide floating background on small screens */
  }
  
  .ceo_image_wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
  }
  
  .ceo_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .ceo_position {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .ceo_bio_content {
    padding: 15px 10px;
  }
  
  .ceo_bio_text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .ceo_bio_text p {
    margin-bottom: 10px;
  }
  
  .ceo_achievements {
    padding: 12px;
    margin-top: 20px;
  }
  
  .ceo_achievements h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .achievement_item {
    margin-bottom: 6px;
    font-size: 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .achievement_item i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .social_links {
    margin-top: 20px;
  }
  
  .social_links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 0.9rem;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .ceo_section {
    padding: 30px 0;
  }
  
  .ceo_image_wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px auto;
  }
  
  .ceo_title {
    font-size: 1.6rem;
  }
  
  .ceo_position {
    font-size: 0.8rem;
  }
  
  .ceo_bio_content {
    padding: 10px 5px;
  }
  
  .ceo_bio_text {
    font-size: 0.85rem;
  }
  
  .ceo_achievements {
    padding: 10px;
  }
  
  .achievement_item {
    font-size: 0.8rem;
  }
  
  .social_links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 5px;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .ceo_image_wrapper {
    width: 150px;
    height: 150px;
  }
  
  .ceo_title {
    font-size: 1.4rem;
  }
  
  .ceo_bio_text {
    font-size: 0.8rem;
  }
  
  .achievement_item {
    font-size: 0.75rem;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .ceo_section {
    padding: 20px 0;
  }
  
  .ceo_image_wrapper {
    width: 180px;
    height: 180px;
  }
  
  .ceo_bio_content {
    padding: 15px;
  }
  
  .ceo_title {
    font-size: 1.6rem;
  }
  
  .ceo_bio_text {
    font-size: 0.85rem;
  }
  
  .ceo_achievements {
    margin-top: 15px;
  }
  
  .social_links {
    margin-top: 15px;
  }
}

/* Print Styles */
@media print {
  .ceo_section::before {
    display: none;
  }
  
  .ceo_image_wrapper::before {
    display: none;
  }
  
  .ceo_image_wrapper {
    box-shadow: none;
    animation: none;
  }
  
  .ceo_bio_content {
    animation: none;
  }
  
  .ceo_bio_text p {
    animation: none;
    opacity: 1;
  }
  
  .achievement_item {
    animation: none;
    opacity: 1;
  }
  
  .social_links {
    display: none;
  }
}

/* Services Page Responsive Styles */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
  .hero_intro_title {
    font-size: 3rem;
  }
  
  .hero_intro_subtitle {
    font-size: 1.2rem;
  }
  
  .hero_intro_stats {
    gap: 30px;
  }
  
  .intro_stat_number {
    font-size: 2.2rem;
  }
  
  .services_page_section .heading_container h2 {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .services_hero_intro {
    padding: 80px 0;
  }
  
  .hero_intro_title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .hero_intro_subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .hero_intro_stats {
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
  }
  
  .hero_intro_image {
    margin-top: 50px;
  }
  
  .services_page_section .heading_container h2 {
    font-size: 2.2rem;
  }
  
  .services_page_subtitle {
    font-size: 1.1rem;
  }
  
  .services_page_box {
    padding: 35px 25px;
    margin-bottom: 40px;
  }
  
  .services_page_content h3 {
    font-size: 1.4rem;
  }
  
  .services_cta_content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .services_cta_content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .services_cta_buttons {
    justify-content: center;
    margin-top: 30px;
  }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
  .services_hero_section {
    padding: 60px 0;
  }
  
  .hero_title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .hero_subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero_stats {
    gap: 30px;
    margin-top: 25px;
  }
  
  .stat_number {
    font-size: 2rem;
  }
  
  .stat_label {
    font-size: 0.8rem;
  }
  
  .hero_image {
    margin-top: 40px;
  }
  
  .floating_element {
    display: none;
  }
  
  .service_section {
    padding: 60px 0;
  }
  
  .service_section .heading_container {
    margin-bottom: 40px;
  }
  
  .service_section .heading_container h2 {
    font-size: 2rem;
  }
  
  .section_subtitle {
    font-size: 1rem;
  }
  
  .service_box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .service_icon {
    width: 70px;
    height: 70px;
  }
  
  .service_icon svg {
    width: 35px;
    height: 35px;
  }
  
  .service_content h3 {
    font-size: 1.3rem;
  }
  
  .service_content p {
    font-size: 0.95rem;
  }
  
  .service_features li {
    font-size: 0.9rem;
  }
  
  .additional_services_section {
    padding: 60px 0;
  }
  
  .additional_service_item {
    padding: 25px 15px;
  }
  
  .service_icon_small {
    width: 50px;
    height: 50px;
  }
  
  .service_icon_small i {
    font-size: 20px;
  }
  
  .additional_service_item h4 {
    font-size: 1.2rem;
  }
  
  .additional_service_item p {
    font-size: 0.9rem;
  }
  
  .cta_section {
    padding: 60px 0;
  }
  
  .cta_content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .cta_content p {
    font-size: 1rem;
    text-align: center;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta_btn {
    width: 200px;
    text-align: center;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .services_hero_section {
    padding: 50px 0;
  }
  
  .services_hero_section::before {
    display: none;
  }
  
  .hero_title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .hero_subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .hero_stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  
  .stat_number {
    font-size: 1.8rem;
  }
  
  .stat_label {
    font-size: 0.75rem;
  }
  
  .hero_image {
    margin-top: 30px;
  }
  
  .service_section {
    padding: 50px 0;
  }
  
  .service_section .heading_container {
    margin-bottom: 30px;
  }
  
  .service_section .heading_container h2 {
    font-size: 1.8rem;
  }
  
  .section_subtitle {
    font-size: 0.9rem;
  }
  
  .service_box {
    padding: 25px 15px;
    margin-bottom: 25px;
  }
  
  .service_icon {
    width: 60px;
    height: 60px;
  }
  
  .service_icon svg {
    width: 30px;
    height: 30px;
  }
  
  .service_content h3 {
    font-size: 1.2rem;
  }
  
  .service_content p {
    font-size: 0.9rem;
  }
  
  .service_features li {
    font-size: 0.85rem;
  }
  
  .service_btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
  
  .additional_services_section {
    padding: 50px 0;
  }
  
  .additional_service_item {
    padding: 20px 10px;
  }
  
  .service_icon_small {
    width: 45px;
    height: 45px;
  }
  
  .service_icon_small i {
    font-size: 18px;
  }
  
  .additional_service_item h4 {
    font-size: 1.1rem;
  }
  
  .additional_service_item p {
    font-size: 0.85rem;
  }
  
  .cta_section {
    padding: 50px 0;
  }
  
  .cta_content h2 {
    font-size: 1.8rem;
  }
  
  .cta_content p {
    font-size: 0.9rem;
  }
  
  .cta_btn {
    padding: 12px 25px;
    font-size: 0.8rem;
    width: 180px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .services_hero_section {
    padding: 40px 0;
  }
  
  .hero_title {
    font-size: 1.6rem;
  }
  
  .hero_subtitle {
    font-size: 0.85rem;
  }
  
  .stat_number {
    font-size: 1.6rem;
  }
  
  .service_section {
    padding: 40px 0;
  }
  
  .service_section .heading_container h2 {
    font-size: 1.6rem;
  }
  
  .service_box {
    padding: 20px 12px;
  }
  
  .service_icon {
    width: 55px;
    height: 55px;
  }
  
  .service_icon svg {
    width: 25px;
    height: 25px;
  }
  
  .service_content h3 {
    font-size: 1.1rem;
  }
  
  .service_content p {
    font-size: 0.85rem;
  }
  
  .service_features li {
    font-size: 0.8rem;
  }
  
  .additional_services_section {
    padding: 40px 0;
  }
  
  .additional_service_item {
    padding: 18px 8px;
  }
  
  .service_icon_small {
    width: 40px;
    height: 40px;
  }
  
  .service_icon_small i {
    font-size: 16px;
  }
  
  .additional_service_item h4 {
    font-size: 1rem;
  }
  
  .additional_service_item p {
    font-size: 0.8rem;
  }
  
  .cta_section {
    padding: 40px 0;
  }
  
  .cta_content h2 {
    font-size: 1.6rem;
  }
  
  .cta_content p {
    font-size: 0.85rem;
  }
  
  .cta_btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    width: 160px;
  }
}

/* Extra Small Screens */
@media (max-width: 360px) {
  .hero_title {
    font-size: 1.4rem;
  }
  
  .hero_subtitle {
    font-size: 0.8rem;
  }
  
  .stat_number {
    font-size: 1.4rem;
  }
  
  .stat_label {
    font-size: 0.7rem;
  }
  
  .service_section .heading_container h2 {
    font-size: 1.4rem;
  }
  
  .service_box {
    padding: 18px 10px;
  }
  
  .service_content h3 {
    font-size: 1rem;
  }
  
  .service_content p {
    font-size: 0.8rem;
  }
  
  .service_features li {
    font-size: 0.75rem;
  }
  
  .additional_service_item h4 {
    font-size: 0.9rem;
  }
  
  .additional_service_item p {
    font-size: 0.75rem;
  }
  
  .cta_content h2 {
    font-size: 1.4rem;
  }
  
  .cta_content p {
    font-size: 0.8rem;
  }
  
  .cta_btn {
    width: 140px;
    font-size: 0.7rem;
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
  .services_hero_section {
    padding: 30px 0;
  }
  
  .hero_title {
    font-size: 1.8rem;
  }
  
  .hero_subtitle {
    font-size: 0.9rem;
  }
  
  .hero_stats {
    flex-direction: row;
    gap: 30px;
    margin-top: 15px;
  }
  
  .service_section {
    padding: 40px 0;
  }
  
  .additional_services_section {
    padding: 40px 0;
  }
  
  .cta_section {
    padding: 40px 0;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero_image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .services_hero_section::before,
  .floating_elements,
  .service_box::before,
  .service_icon::before,
  .service_btn::before {
    display: none;
  }
  
  .service_box {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  .cta_section {
    background: none;
    color: #000;
  }
  
  .additional_services_section {
    background: none;
    color: #000;
  }
  
  .info_section {
    background: none;
    color: #000;
  }
}