:root {
	--theme-main: #0a58ca;
	--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;
}

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

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

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

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

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

.section-title {
    font-size: 36px;
    font-weight: 600;
    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: cover;
    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;
    }
}

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

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

.blog-hero-wrap {
    padding: 50px 0;
    background: #f7f9fc;
}
.blog-hero-content .blog-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #222;
}
.blog-hero-content .blog-title:hover {
    transform: translateX(0px) !important;
    transition: all .25s ease;
}
.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(--theme3);
    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; */
    object-position: top left;
}

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

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

.toc_box_main.sticky-top {
    top: 110px;
    z-index: 9;
}
.toc-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px #a1a0a0;
    margin: 25px 0;
    margin-top: 0px;
    overflow: hidden;
}
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
    cursor: pointer;
    background: #ffffff;
    border-bottom: 1px solid #d2d2d2;
}
.toc-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-main);
    text-transform: capitalize;
    font-family: "Mulish", sans-serif;
    background-position: 100% 50%;
    background: var(--theme3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.toc-header i {
    /* color: var(--theme-main); */
    transition: 0.3s;
    background-position: 100% 50%;
    background: var(--theme3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
#tocBody {
    display: block;
}
.toc-body {
    display: none;
    padding: 15px 10px;
}
.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: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    vertical-align: middle;
}
.toc-body ul li a:hover {
    color: var(--theme-main);
    background-position: 100% 50%;
    background: var(--theme3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
/* TOC se dots remove */
#tocList,
#tocList ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* extra safety */
#tocList li {
    list-style: none;
}
.blog-details-left h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px;
    position: relative;
}
.blog-details-left h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1.6px;
    background: var(--theme3);
}
.blog-details-left h2:first-child {
    margin-top: 20px !important;
}
.blog-details-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.blog-details-left h4 {
	font-size: 16px;
	font-weight:700;
	color: #000;
}
.blog-details-left p {
    font-size: 15px;
    color: #000;
    text-align: justify;
}
.blog-details-left p a {
	font-weight: 500;
	color: var(--theme1);
	transition: all .3s ease-in-out;
}
.blog-details-left p a:hover {
	color: var(--theme2);
}
.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: 40px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.swiper.newsSwiper .swiper-wrapper {
    margin: 10px 0px;
    padding-bottom: 30px;
}
/* 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: 260px;
  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: 8px;
    text-transform: capitalize;
    font-family: "Mulish", sans-serif;
    background-position: 100% 50%;
    background: var(--theme3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-size: 13px;
}

.news-title a {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    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-title a:hover {
    background-position: 100% 50%;
    background: var(--theme3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.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;
}

.news-content .apply_btn {
	height: 44px;
    line-height: 44px;
    border-radius: 5px;
    padding: 0 24px;
}

/* 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;
}

/*--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-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;
  }
}

/*--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);
}
/* BLOG CONTENT IMAGES FIX */
#blogContent img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    object-fit: fill;
    box-shadow: 0 0 4px #a1a0a0;
}

/* optional: agar editor inline width de raha hai */
#blogContent img[style] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
     border-radius: 12px;
}

/* agar figure / wrapper aa raha ho */
#blogContent figure {
    max-width: 100%;
    margin: 15px auto;
    text-align: center;
}

.blog-details-left p img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.swiper-buttons {
	position: absolute;
    top: 0;
    right: 0 !important;
}
.swiper-button-next, .swiper-button-prev {
    right: 0 !important;
    left: unset;
    color: #000;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    box-shadow: 0 0 4px #d3d3d3;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
    color: var(--theme-main);
}
.news-section .swiper-pagination {
    bottom: 2px;
    left: auto;
    text-align: end;
}
.news-section .swiper-pagination .swiper-pagination-bullet {
    height: 10px;
    border-radius: 3px;
}
.news-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 10px;
    border-radius: 4px;
    background: var(--theme3);
}


.blog-details-left table {width: 100%; margin-bottom: 20px;}
.blog-details-left table,
.blog-details-left th,
.blog-details-left td {
  border: 1px solid rgb(161, 161, 161);
  border-collapse: collapse;
}
.blog-details-left th,
.blog-details-left td {
  padding: 8px;
  font-size: 15px;
  color: #000;
}
/*--why-fenefit-section-css-end--*/
/*--responsive-css-start--*/

@media (max-width: 992px) {
	.blog-hero-content .blog-title {
		font-size: 30px;
	}
	.blog-hero-content {
		margin-bottom: 30px;
	}
	.blog-hero-wrap {
		padding: 40px 0;
	}
	.toc_box_main.sticky-top {
		margin-bottom: 30px;
	}
	.section-title {
		font-size: 28px;
	}
	.news-section {
		padding: 50px 0;
	}

}

@media (max-width: 767px) {
	.blog-hero-content .blog-title {
		font-size: 24px;
	}
	.breadcrumb-list {
		list-style: none;
		display: flex;
		flex-wrap: nowrap;
		margin: 0;
		padding: 0;
		overflow-y: scroll;
		white-space: nowrap;
		height: 25px;
	}
	.section-title {
		font-size: 24px;
	}
	.blog-hero-image {
		width: 100%;
		height: 350px;
	}
    .blog-hero-image img{
        object-fit: contain;
    }

}

@media (max-width: 480px) {
	.blog-hero-content .blog-title {
		font-size: 20px;
	}
	.blog-details-left h2 {
		font-size: 19px;
	}
	.section-title {
		font-size: 22px;
	}
	.blog-hero-image {
		width: 100%;
		/* height: 290px; */
        height: 240px;
	}
	.blog-hero-content .blog-title {
    font-size: 24px;
    margin-bottom: 15px;
}
.blog-hero-content .blog-meta {
    font-size: 14px;
    margin-bottom: 15px;
}

}

/*--responsive-css-end--*/
.blog-hero-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    height: 100%;
    gap: 10px;
}
.blog-hero-content .visa_apply_box{
    max-height: 180px;
}

.visa-banner {
            background-color: #f9f9f9;
            border: 2px solid var(--theme1); /* Olive green border from image */
            border-radius: 10px;
            padding: 25px 30px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .visa-banner h2 {
            color: #1a1a1a;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .visa-banner p {
            color: #4a4a4a;
            line-height: 1.6;
            margin-bottom: 18px;
	    text-align: center;
        }

        .visa-banner .contact-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 15px;
        }

        .visa-banner .contact-info a {
            color: var(--theme1); /* Green link color from image */
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease;
        }

        .visa-banner .contact-info a:hover {
            text-decoration: underline;
            color: #5d7a1e;
        }

        .visa-banner .divider {
            color: var(--theme1);
            font-weight: normal;
		height: inherit;
        }

        .visa-banner i {
            font-size: 1.1rem;
        }
@media (max-width: 480px) {
        .visa-banner .divider {
		display:none;
	}
}