
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

:root {
	--theme-main: #04675c;
	--theme-second: #000;
	--theme-primery: #ffffff;
}

/*--default-css-start--*/

.default-banner-section {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}
.default-banner-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(92deg, #242424a8 0%, #2424249e 20.73%, #242424a3 45.5%, #242424b5 99.99%);
    z-index: 1;
}

.default_banner_heading h1 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}

.default_banner_heading p {
    font-size: 16px;
    color: #e4e4e4;
}

/*--breadcumb-css--*/

.custom-breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-radius: 8px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    font-size: 15px;
    color: #6c757d;
    position: relative;
    padding-right: 20px;
}

.breadcrumb-list li a {
    text-decoration: none;
    color: var(--theme-main);
    transition: 0.3s;
}

.breadcrumb-list li a:hover {
    color: #000;
}

/* Arrow separator */
.breadcrumb-list li::after {
    content: '\F280';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 0;
    right: 6px;
    color: #000000;
    font-size: 11px;
    line-height: 25px;
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li.active {
    color: #000;
    font-weight: 600;
}

/*--default-css-end--*/

/*--blog-list-css-start--*/

.section-title {
    color: var(--theme-main);
    margin-bottom: 12px;
}

.blog-section {
    background: #fff;
}

/* Heading */
.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c39;
}

.blog-title span {
    color: var(--theme-main);
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover */
.blog-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Image Box */
.blog-card .img-box {
    position: relative;
    overflow: hidden;
}
.blog-card .img-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #00000033;
    transition: all .3s ease-in-out;
}
.blog-card .img-box img {
    width: 100%;
    height: 240px;
    object-fit: fill;
    transition: all 0.5s ease;
}

/* Image Zoom */
.blog-card:hover .img-box img {
    transform: scale(1.1);
}

/* Date Badge */
.blog-card .date-box {
    position: absolute;
    bottom: 0px;
    right: 20px;
    background: var(
    --theme-main);
    color: #fff;
    padding: 0;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    padding-bottom: 6px;
}

.blog-card .date-box h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    padding: 8px 16px;
    width: 64px;
    background: #fff;
    color: var(--theme-main);
    border-radius: 10px 10px 0px 0px;
}

.blog-card .date-box span {
    font-size: 15px;
    margin-left: 4px;
}

/* Content */
.blog-card .content {
    padding: 30px 20px 22px;
    flex-grow: 1;
}

/* Meta */
.blog-card .meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog-card .meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card .meta i {
    color: var(--theme-main);
    transition: 0.3s;
}

/* Icon Hover */
.blog-card:hover .meta i {
    transform: scale(1.2);
}

/* Title */
.blog-card .content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .content h5 a {
    text-decoration: none;
    color: #0b1c39;
    transition: 0.3s;
}

.blog-card .content h5 a:hover {
    color: var(--theme-main);
}

/* Paragraph */
.blog-card .content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 6px !important;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-card .img-box img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .blog-card .blog-title {
        font-size: 24px;
    }

    .blog-card .img-box img {
        height: 200px;
    }

    .blog-card .content {
        padding: 25px 15px;
    }
}
@media (max-width: 576px) {
	.blog-card .img-box img {
		height: 230px;
	}
	
}

/*--blog-list-css-end--*/

/*--blog-hero-css-start--*/

.blog-hero-wrap {
    padding: 60px 0;
    background: #f7f9fc;
}
.blog-hero-content .blog-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}
.blog-hero-content .blog-meta {
    font-size: 14px;
    color: #000;
    margin-bottom: 25px;
}
.blog-hero-content .text-color {
    color: var(--theme-main);
}

.blog-hero-content .blog-share p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}
.blog-hero-content .social-icons {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
}
.blog-hero-content .icon-box {
    width: 42px;
    height: 42px;
    background: var(--theme-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    margin: 0;
}
.blog-hero-content .icon-box:hover {
    background: #000;
    color: #fff;
}

.blog-hero-image {
    width: 100%;
    height: 420px;
    box-shadow: 0 0 2px #d2d2d2;
    border-radius: 13px;
    overflow: hidden;
}
.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/*--blog-hero-css-end--*/

/*--blog-details-start--*/

.toc_box_main.sticky-top {
    top: 134px;
    z-index: 9;
}
.toc-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px #a1a0a0;
    margin: 25px 0;
    overflow: hidden;
}
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    background: #ffffff;
    border-bottom: 1px solid #d2d2d2;
}
.toc-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-main);
}
.toc-header i {
    color: var(--theme-main);
    transition: 0.3s;
}
#tocBody {
    display: block;
}
.toc-body {
    display: none;
    padding: 15px 20px;
}
.toc-body ul {
    list-style: none;
    padding-left: 18px;
}
.toc-body ul li {
    padding: 5px 0;
    list-style: disc;
    margin-bottom: 0px;
    margin-left: 4px;
    font-size: 22px;
}
.toc-body ul li a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    vertical-align: middle;
}
.toc-body ul li a:hover {
    color: var(--theme-main);
}

.blog-details-left h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-main);
}
.blog-details-left h2:first-child {
    margin-top: 20px !important;
}
.blog-details-left h3 {
	font-size: 20px;
	font-weight:600;
	color: #000;
}
.blog-details-left p {
    font-size: 15px;
    color: #000;
    text-align: justify;
}
.blog-details-left p strong {
	font-size: 15px;
	font-weight: 700;
	color: #000;
}
.blog-details-left ul li {
	font-size: 15px;
	color: #000;
	padding-bottom: 8px;
}
.blog-details-left ol li {
	font-size: 15px;
	color: #000;
	padding-bottom: 8px;
}

/*--blog-details-end--*/

.news-section {
  background: #f7f9fc;
  padding: 60px 0;
}

/* Card */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.news-img {
  overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 230px;
    object-fit: fill;
    transition: 0.4s;
}

.news-card:hover img {
  transform: scale(1.08);
}

/* Content */
.news-content {
  padding: 14px;
}

.news-date {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.news-title a {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-main);
    text-decoration: none;
    transition: all .3s ease-in-out;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 8px !important;
}

.news-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 10px !important;
}

/* Button */
.read-btn {
    margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #000;
  padding: 6px 10px;
  transition: 0.3s;
}

.read-btn:hover {
  color: var(--theme-main);
  border-color: var(--theme-main);
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
.blog-details-left table {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 4px #a1a0a0;
}
.blog-details-left table tbody tr:first-child {
    background: var(--theme-main);
    color: #fff;
}
.blog-details-left table tbody tr td {
    padding: 12px;
    border: 1px solid #d2d2d2;
}

.blog-details-left table tbody tr:first-child td {
    color: #fff;
}
.blog-details-left table tbody tr:first-child td p {
    color: #fff;
    font-weight: 700;
}
.blog-details-left table tbody tr td p {margin-bottom: 0px;}

@media (max-width: 992px) {
	
.blog-hero-wrap {
    padding: 50px 0;
}
.blog-hero-content .blog-title {
    font-size: 32px;
}
.blog-hero-image {
    width: 100%;
    height: auto;
    margin-top: 26px;
}

.blog-details-left {
    margin-top: 26px;
}
	
}

@media (max-width: 768px) {

.breadcrumb-list li {
    display: inline-block;
    font-size: 14px;
}
.blog-hero-wrap {
    padding: 40px 0;
}
.blog-hero-content .blog-title {
    font-size: 26px;
}
.blog-hero-image {
    width: 100%;
    height: auto;
    margin-top: 26px;
}

.blog-details-left {
    margin-top: 26px;
}
	
}

@media (max-width: 576px) {
	
.breadcrumb-list {
    /* list-style: none; */
    display: flex;
    flex-wrap: unset;
    white-space: nowrap;
    overflow-x: scroll;
    height: 25px;
    margin: 0;
    padding: 0;
}
.breadcrumb-list li {
    display: inline-block;
    font-size: 14px;
}
.blog-hero-content .blog-title {
    font-size: 23px;
    margin-bottom: 12px;
}
.blog-hero-content .blog-meta {
    font-size: 14px;
    margin-bottom: 12px;
}

.toc-body {
    display: none;
    padding: 10px 16px;
}
.toc-body ul li a {
    font-size: 14px;
}
.blog-details-left h2 {
    font-size: 20px;
}
.blog-details-left h3 {
    font-size: 18px;
}
.blog-details {
    padding-bottom: 10px !important;
}

}

/*--news-blog-end--*/

/*--document-required-css-start--*/

.document-required-section {
  background: #f7f9fc;
  padding: 70px 0;
}

/* Heading */
.document-required-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--theme-main);
}

.document-required-subtitle {
  color: #000;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Card */
.document-required-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.document-required-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.document-required-icon {
    width: 110px;
    height: 110px;
    background: #f7f9fc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -86px auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-required-icon img {
  width: 55px;
}

/* Content */
.document-required-content p {
  font-size: 14px;
  color: #000;
}

/* Bottom Info Box */
.document-required-info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--theme-main);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.document-required-cards {
    margin-top: 50px;
}
.document-required-info-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--theme-main);
}

.document-required-info-box ul {
  padding-left: 18px;
  margin-bottom: 0px;
}

.document-required-info-box li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Responsive */

@media (max-width: 768px) {
  .document-required-title {
    font-size: 26px;
  }

  .document-required-icon {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
	.document-required-card {
		border-radius: 20px;
		padding: 16px 14px 16px;
	}
	.document-required-icon {
		width: 80px;
		height: 80px;
		margin: 0 auto;
		margin-bottom: 12px;
	}
	.document-required-icon img {
		width: 44px;
	}
	.document-required-content p {
		font-size: 16px;
	}
	.document-required-cards {
		margin-top: 20px;
	}
}


@media(max-width:480px){
	
	.document-required-title {
		font-size: 22px;
	}
	
}

/*--document-required-css-end--*/

/*--why-fenefit-section-css-start--*/

.oman-visa-benefits {
  background: #FFF;
}

.section-TITLE h2 {
  font-size: 28px;
  font-weight: 600;
}

.benefit-box {
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 4px #d2d2d2;
    margin-bottom: 24px;
}

.benefit-box img {
  width: 50px;
  margin-bottom: 10px;
  filter: hue-rotate(120deg); /* optional tint */
}

.benefit-box p {
  font-size: 15px;
  margin: 0;
}

.benefit-box:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-bottom: 4px solid var(--theme-main);
}

.divider {
  height: 2px;
  background: linear-gradient(to right, var(--theme-main), transparent);
}

/*--why-fenefit-section-css-end--*/

/*--default-page-css-start--*/

.page-content {
    padding: 50px 0px;
}

.page-content p {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    color: #000;
}
.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--theme-main);
}
.page-content h2:first-child {
    margin-top: 0px;
}
.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--theme-main);
}
.page-content ul {
    padding: 0 20px;
}
.page-content ul li {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    color: #000;
    padding-bottom: 4px;
}



/*--default-page-css-end--*/

@media(max-width:991px) {
	
.default-banner-section {
    width: 100%;
    height: 420px;
}
.default_banner_heading h1 {
    font-size: 38px;
}

}

@media(max-width:767px) {
	
.default-banner-section {
    width: 100%;
    height: 380px;
}
.default_banner_heading h1 {
    font-size: 32px;
}
.how-apply-pro .section-title h2 {
    font-size: 26px;
}

}

@media(max-width:575px) {
	
.default-banner-section {
    width: 100%;
    height: 340px;
}
.default_banner_heading h1 {
    font-size: 26px;
}
.how-apply-pro .section-title h2 {
    font-size: 24px;
}

}

@media(max-width:480px) {
	
.default-banner-section {
    width: 100%;
    height: 260px;
}
.default_banner_heading h1 {
    font-size: 22px;
}
.how-apply-pro .section-title h2 {
    font-size: 22px;
}

}