.education_section {
   
    margin: 100px auto;
    padding: 70px 60px 50px;
    max-width: 1100px;
    color: #e6e6e6;
    border-radius: 12px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),  
              0 5px 15px rgba(0, 0, 0, 0.3); 
    transition: all 0.3s ease-in-out;
}

.education_section:hover {
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),  
              0 5px 15px rgba(0, 0, 0, 0.3); 
}

.education_section .bg_title {
    text-align: center;
    margin-bottom: 35px;
}

.education_section .headInModule {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFC000;
    border-bottom: 3px solid #FFC000;
    display: inline-block;
    padding-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.education_section .module_content ul {
    list-style-type: disc;
    max-width: 850px;
    margin: 0 auto;
    padding-left: 40px;
}

.education_section .module_content ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 12px;
    color: #dcdcdc;
    transition: color 0.3s ease;
}

.education_section .module_content ul li strong {
    color: #fff;
}

.education_section .module_content ul li:hover {
    color: #FFC000;
}

@media (max-width: 768px) {
    .education_section {
        padding: 50px 25px 30px;
        margin: 10px 15px;
    }
    .education_section .headInModule {
        font-size: 1.8rem;
    }
    .education_section .module_content ul {
        padding-left: 20px;
    }
}
.align{
    text-align: justify;
    color: #fff;
}
.para {
    font-style: italic;
    text-align: left;
    margin-left: 0;
    color: #fff;
}

/* Container wrapper */
.awards-wrapper {
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Each award row (flex container) */
.award-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center; /* vertically center content & image */
}

/* Columns inside row (image + content) */
.award-row > div {
  flex: 1;           /* take equal space */
  min-width: 300px;  /* prevents columns from shrinking too much */
}

/* Award image */
.award-img {
  width: 100%;
  height: 375px;      /* portrait height */
  object-fit: contain;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
}

/* Award content box */
.award-box {
  background: #3b0000;
  border-left: 6px solid #FFC000;
  border-radius: 10px;
  padding: 25px 20px;
  color: #fff;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),  
              0 5px 15px rgba(0, 0, 0, 0.3); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-box:hover {
  transform: translateY(-5px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),  
              0 5px 15px rgba(0, 0, 0, 0.3); 
}

/* Award title */
.award-title {
  color: #FFC000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-size: 20px;
}

/* Award text */
.award-text {
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  color: #f1f1f1;
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
  .award-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .award-row > div {
    min-width: 100%;
  }

  .award-img {
    height: auto;
     margin: 0 1px !important; 
  }
  .awards-wrapper {
 
  margin-bottom: 40px;
}
}

/* Optional: add spacing between multiple award rows */
.award-row + .award-row {
  margin-top: 60px;
}


.press-section {
  background: #3b0000;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),  
              0 5px 15px rgba(0, 0, 0, 0.3); 
  margin-top: 40px;
  margin-bottom: 60px;
}



.press-details p {
  margin: 5px 0;
  font-weight: 500;
  color: #fff;
}

.divider {
  border: 0;
  height: 1px;
  background: #fff;
  margin: 20px 0;
}

.press-content {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #e0e0e0;
}

.press-content strong {
  color: #FFC000;
}
/* Flex row for images */
.press-images-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center; /* center the images */
}

/* Column wrapper for each image */
.press-image-col {
  flex: 1;
  min-width: 200px; /* responsive minimum width */
  max-width: 32%;   /* roughly 3 images per row */
}

/* Images style */
.press-img {
  width: 100%;
  height: auto;        /* maintain aspect ratio */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
}
  
/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .press-image-col {
    max-width: 100%;   /* full width on mobile */
  }
}
@media (max-width: 768px) {
    .footer_widget {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer_widget .textwidget p {
        width: 100%;
        max-width: 300px;
    }

    .footer_widget .logo {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .footer_widget p {
        text-align: center;

    }

    .footer_widget p .logo {
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .blog_content {
        padding: 0 15px;
    }

    .blog_post_title h2 {
        font-size: 15px;
        text-align: center;
        line-height: 1.3;
    }

    .single_contentarea.single_portfolio ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .single_contentarea.single_portfolio ul li {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .single_contentarea.single_portfolio p {
        font-size: 13px;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .single_contentarea.single_portfolio {
        margin-bottom: 15px;
        padding-bottom: 0;
    }

    .single_contentarea.single_portfolio ul {
        margin-bottom: 10px;
        padding-left: 15px;
    }

    .single_contentarea.single_portfolio ul li {
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .single_contentarea.single_portfolio p {
        margin-bottom: -112px;
        line-height: 1.5;
                margin-left: 20px;
        margin-right: 20px;
    }
}
@media (max-width: 768px) {
    .module_line_trigger .module_content {
        text-align: center;
        padding: 20px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .module_line_trigger .module_cont-03 .logo:first-child {
        font-size: 36px;
        display: block;
        margin-bottom: -22px;
    }

    .module_line_trigger .module_cont-03 .logo:last-child {
        font-size: 18px;
        display: block;
        margin-top: 0;
        font-weight: 300;
    }

    .module_line_trigger .welcome_text {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 15px;
        word-wrap: break-word;
    }

    .module_line_trigger .shortcode_button {
        font-size: 16px;
        padding: 12px 25px;
        margin-top: 20px;
    }

    .module_line_trigger .module_inner {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .module_line_trigger .module_content.shortcode_iconbox {
        margin-bottom: 15px; /* reduce space between icon boxes */
        padding: 15px 10px;  /* optional: reduce inner padding */
    }

    .module_line_trigger .iconbox_wrapper {
        padding: 1px 0; /* tighten spacing inside each box */
    }

    .module_line_trigger .iconbox_body p {
        margin-bottom: 10px; /* reduce paragraph spacing */
    }
}
/* Mobile view only */
@media (max-width: 768px) {
 

  .logo_sect .logo {
    display: block !important;    /* Stack vertically */
    margin: 5px 0 !important;     /* Add space between them */
  }
}
/* .slick_testim_info p,
.slick_testim_info span {
  height: 150px; 
} */
.image-slider img {
  width: 100%;
  height: 350px; 
  object-fit: cover; 
  display: block;
}
.image-slider {
  margin: 0 20px; 
}

@media (max-width: 768px) {
  .image-slider .slick-slide {
    margin-left: 15px;
    margin-right: 5px;
  }
}

.image-slider img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .image-slider img {
    object-fit: contain; /* scale & crop for mobile */
    height: 300px;     /* optional smaller height for mobile */
  }
}

@media (max-width: 480px) {
  .image-slider img {
    height: 150px;     /* smaller devices */
  }
}
@media (max-width: 768px) {
    .rev_slider_wrapper.fullscreen-container {
        height: 500px !important; 
        width: 100%;
    }
    
    .rev-slidebg {
        height: 100% !important;      /* ensure slide fills container */
        object-fit: contain;             /* crop/scale images properly */
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .rev_slider_wrapper.fullscreen-container {
        height: 300px !important;
    }

    .rev-slidebg {
        object-fit: cover;
    }
    .tp-fullwidth-forcer{
      height: 300px !important;
    }
}
/* ✅ iPad / Tablet view */
@media (min-width: 768px) and (max-width: 1024px) {
  .rev_slider_wrapper.fullscreen-container {
    height: 500px !important; /* reduce slider height */
  }

  .rev-slidebg {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
  }

  .tp-fullwidth-forcer {
    height: 500px !important;
  }

  /* Optional: Adjust text size for better visibility */
  .slider_title_ls {
    font-size: 80px !important;
  }
  .slide03 {
    font-size: 28px !important;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  .module_line_trigger .logo {
    font-size: 20px !important;
  }

  .module_line_trigger .logo + .logo {
    font-size: 16px !important;
  }

  .module_line_trigger .welcome_text {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .module_line_trigger .shortcode_button {
    font-size: 12px !important;
    padding: 6px 12px !important;
    margin-top: 10px;
  }

  .module_line_trigger .module_inner {
    padding: 15px 8px !important;
  }
  
}
/* Mobile view adjustments */
@media (max-width: 768px) {
    .module_cont-03,
    .module_cont-04,
    .module_cont-05,
    .module_cont-06 {
        padding-left: 10px;  
        padding-right: 10px; 
        margin-left: 0;      
        margin-right: 0;
        margin-bottom: -6px !important; /* reduce bottom space */
    }

    .module_cont-03 a.logo {
        font-size: 28px; 
    }

    .module_cont-03 a.logo + a {
        font-size: 16px; 
    }

    .welcome_text {
        font-size: 14px; 
    }
}
/* Mobile-friendly portfolio */
@media (max-width: 768px) {
  .portfolio_packery {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .packery_item {
    width: 100% !important; /* full width */
    margin-bottom: 20px !important;
  }

  .packery_img_block img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
  }

  .portfolio_grid_content {
    padding: 10px 0 !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .packery_item {
    margin-bottom: 15px !important;
  }

  .portfolio_grid_content {
    padding: 5px 0 !important;
  }
}
/* Mobile-friendly promo block */
@media (max-width: 768px) {
  .module_promo_text {
    text-align: center;
    padding: 40px 20px;
  }

  .promo_text_block_wrapper p.style12 {
    font-size: 1.2rem !important; /* smaller subtitle */
    margin-bottom: 10px;
  }

  .promo_text_main_title {
    font-size: 2rem !important; /* smaller main title */
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .promo_button_block .shortcode_button {
    display: inline-block;
    padding: 12px 25px !important;
    font-size: 1rem !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .promo_text_block_wrapper p.style12 {
    font-size: 1rem !important;
  }

  .promo_text_main_title {
    font-size: 1.5rem !important;
  }

  .promo_button_block .shortcode_button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
  .promo_button_block {
    padding-top: 1px;
   
}
.promoblock_wrapper {
padding: 1px 0 !important;
}
.style14 {
	padding-bottom:10px; 
	padding-top:10px;
}
}
/* Reduce top and bottom padding on mobile */
@media (max-width: 768px) {
  .module_line_trigger.style10 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .module_promo_text {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .promo_text_block_wrapper {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  /* .module_line_trigger.style21 {
    padding: 40px 0;
  }

  .module_line_trigger.style21 .testimonial_wrapper {
    padding: 0 15px;
  } */

  /* .module_line_trigger.style21 .slick_testim_info {
    padding: 20px;
    margin: 15px 0;
  }

  .module_line_trigger.style21 .slick_testim_info p {
    font-size: 16px;
    line-height: 1.5;
  }

  .module_line_trigger.style21 .slick_testim_info span {
    font-size: 15px;
  } 
  .slick_testim_info p,
.slick_testim_info span {
  height: 100px; 
}
*/
}
 .module_testimonial {
      margin-bottom: 60px;
  }
  @media (max-width: 768px) {
    .slick_testim_info p {
        font-size: 14px; /* smaller paragraph text */
        line-height: 1.4; /* adjust line height for readability */
    }

    .slick_testim_info span {
        font-size: 12px; /* smaller author name */
    }

    .testimonial_wrapper {
        padding: 20px 20px; 
        padding-top: 71px;
    }
   

     .module_testimonial {
      margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
    .slick-prev.slick-arrow,
    .slick-next.slick-arrow {
        width: 27px;      /* smaller width */
        height: 25px;     /* smaller height */
        font-size: 16px;  /* smaller arrow icon size */
    }

    /* Optional: adjust position if needed */
    .slick-prev.slick-arrow {
        left: 5px;
    }
    .slick-next.slick-arrow {
        right: 5px;
    }
}
/* For mobile screens */
@media only screen and (max-width: 768px) {
    .rev_slider_wrapper,
    .rev_slider {
        height: 100vh !important; 
        min-height: 300px; 
    }

    .rev_slidebg {
        width: auto !important;
        height: 100% !important;
        object-fit: cover; 
        object-position: center center;
    }
    .stat_count{
         
    font-size: 40px;
    line-height: 12px;
    }
    .style17{
      padding-top: 11px;
    }
} 

@media (max-width: 768px) {
    .fs_thmb_list li img {
        width: 70px;  /* smaller thumbnail */
        height: auto;
    }

    .fs_thmb_wrapper {
        overflow-x: scroll; /* horizontal scroll on mobile */
        padding-bottom: 5px;
    }

    .label {
        font-size: 14px; /* smaller label text */
        margin-bottom: 5px;
    }
  
}

.education_section {
    padding: 30px 15px; /* top/bottom padding */
}

/* Tablet & mobile: reduce top/bottom spacing */
@media (max-width: 1024px) {
    .education_section {
        padding: 40px 10px;
    }
}

@media (max-width: 768px) {
    .education_section {
        padding: 30px 10px;
    }

  
}

@media (max-width: 480px) {
    .education_section {
        padding: 20px 10px; /* minimal top/bottom padding */
    }
    .style1 {
    padding-bottom: 0 !important;
    padding-top: 0px;
}
}
@media (max-width: 768px) {
    .award-row {
        margin-bottom: -35px; /* minimal bottom space on mobile */
    }
}
@media (max-width: 768px) {
 
  .portfolio_grid {
    padding: 0 10px !important; /* reduce horizontal padding */
  }

  .port_1col_content {
    padding: 0 !important;
    text-align: left !important; /* align all content to the left */
  }

  .port_1col_top,
  .port_1col_article {
    text-align: left !important;
  }

  .port_1col_article ul {
    padding-left: 0;
    margin-left: 0;
    list-style-position: inside;
  }

  .portfolio_grid_title a {
    display: block;
    font-size: 14px;
    /* line-height: 1.4; */
    word-wrap: break-word;
    text-align: center !important;
  }

  .port_1col_article li {
    font-size: 14px;
    line-height: 1.5;
    text-align: left !important;
  }
}


/* ✅ Extra small phones */
@media (max-width: 480px) {
  .press-details {
  
    font-size: 15px;
    margin: 0 3px;
  }
  .portfolio_grid_wrapper.one_col .portfolio_grid_title a{
    line-height:1px;
     text-align: left !important;
  }
  
}
@media only screen and (max-width: 767px) {
	.single_post .nivo-directionNav .nivo-nextNav {
		right: 10px !important;
	}
	.single_post .nivo-directionNav .nivo-prevNav {
		left: 10px !important;
	}
}
@media (max-width: 768px) {
	.fs_slider_prev:after,
	.fs_slider_next:after {
		left: 20px !important;         /* move closer if needed */
		top: 2px !important;           /* adjust position */
		font-size: 10px;    /* smaller text */
		line-height: 10px;
		height: 10px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rev_slider_wrapper,
  .rev_slider,
  .rev-slidebg {
    height: 500px !important; /* reduce height for tablets */
    background-size: cover !important; /* keep full image */
    background-position: center center !important;
  }

  .fullscreen-container {
    height: 500px !important;
  }

  /* Optional: reduce big text sizes for tablets */
  .slider_title_ls {
    font-size: 80px !important;
  }
  .slide03 {
    font-size: 28px !important;
  }
}
.page_title h1 {
  color: #3b0000;
  font-size: 77px;
}
/* Default style for desktop */
.portfolio_grid_title span {
  font-style: italic;
  margin-left: 0;
  text-align: left;
  font-size: 18px;
  display: block;
  margin-top: 5px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .portfolio_grid_title span {
    font-size: 14px; /* smaller font on tablets and phones */
    text-align: left; /* optional: center on mobile */
  }
}

@media (max-width: 480px) {
  .portfolio_grid_title span {
    font-size: 14px; /* very small devices */
    text-align: left; 
    margin-top: -1px;
  }
   .page_title{
      margin-top: 50px;
    }
}