/*=======================================================================
              [Table of Contents]
=========================================================================

01. Typography 
02. General
03. Preloader
04. Top bar
05. Top Nav Bar
06. Home Slider
07. Choose country
08. Visa Features
09. Visa Map
10. Visa Services
11. Testimonial
12. Blog
13. Visa Type
14. Patners
15. Visa Consultation
16. Footer
17. About Home Page
18. About Page
19. About Facts
20. About Patners
21. Team Our Staff
22. Team Contact Us
23. Faq Page 
24. Coaching Page 
25. Coaching Detail Page 
26. Blog Page 
27. Blog Detail Page 
28. Service Page Country 
29. Service Details Page
30. Country List Page
31. Details Page 
32. Contact Us Page
33. Map
34. Contact Us Page Two

/* =============== Colors Used =====================

  Orange             : #eb3337;
  Dark-Blue          : #121B51;
  White              : #FFF;
  Gray               : #777;
  Black              : #232323;

 ===================================================*/
:root {
        --brand-blue: #121b51;
        --brand-red: #eb3337;
        --bg-glass: rgba(255, 255, 255, 0.7);
        --white: #ffffff;
        --black: #000000;
    }
html,
body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* ================================= */
		/*===== Typography =====*/
/* ================================= */

body {  
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #777;
  font-size: 17px;
  line-height: 1.4;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
/*------------------------------------------------------------------*/
/*   IE10 in Windows 8 and Windows Phone 8 Bug fix
/*-----------------------------------------------------------------*/

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
/* 1. Define the width/height of the scrollbar */
/* 1. WebKit/Blink (Chrome, Safari, Edge, Android, iOS) */
::-webkit-scrollbar {
    width: 8px; 
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #121B51; /* Your brand blue */
    border-radius: 10px;
    border: 2px solid #f1f1f1; 
}

::-webkit-scrollbar-thumb:hover {
    background: #0d143c; /* Slightly darker blue for hover */
}

/* 2. Modern Standards (Firefox & Chrome 121+) */
* {
    scrollbar-width: thin;
    /* First color is the Thumb (Blue), Second is the Track (Gray) */
    scrollbar-color: #121B51 #f1f1f1;
}

/* 3. Mobile Specific Fixes */
@media (max-width: 768px) {
    /* Ensures smooth momentum scrolling on iOS */
    .scroll-container, body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Makes the thumb slightly wider for easier touch grabbing on mobile */
    ::-webkit-scrollbar {
        width: 10px;
    }
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Poppins', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 20px;
}
h1 {
  font-size: 38px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
a {  
  color: #eb3337;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover, 
a:focus {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #FFF;
  text-decoration: none;
}
p {
  margin-bottom: 10px; 
}
blockquote {  
  font-style: italic;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0; 
}
strong {
  color: var(--brand-blue);
}
/* ================================= */
    /*===== General =====*/
/* ================================= */
.overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);   
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;      
}
.parallax {
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   
  position: relative;      
}
.btn-primary {  
  background-color: #eb3337;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600px;
  padding: 15px 28px;
  border: 2px solid #eb3337;
  text-transform: uppercase;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background-color: #FFF;
  color: #eb3337;
  border: 2px solid #eb3337;
}
.btn-primary:focus {
  background-color: #FFF;
  color: #eb3337;
  border: 2px solid transparent;
}
.btn-secondary {
  background-color: #121B51;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500px;
  text-transform: uppercase;
  line-height: 0.71;
  padding: 19px 25px;
  border: 1px solid #121B51;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-secondary:hover {
  background-color: #FFF;
  color: #232;
  border: 1px solid transparent;
}
.btn-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-link:hover {
  color: #eb3337;
  text-decoration: none;
}
.btn-white {
  background-color: #FFF;
  display: inline-block;
  float: left;
  color: #eb3337;
  padding: 20px 40px;
  margin-right: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}
.btn-white:hover {
  background-color: #F7F7F7;
  border: 1px solid #eb3337;
}
.btn-dark {
 color: #fff;
  display: inline-block;
  float: left;
  background-color: #eb3337;
  padding: 20px 40px;
    font-weight: 700;
  margin-right: 10px;
  border: 1px solid #eb3337;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-dark:hover {
  background-color: #FFF;
  color: #eb3337;
  border: 1px solid #FFF;
}
.form-control{
	padding: 16px 16px;
}

.form-control:focus { 
  -webkit-box-shadow: none;
  box-shadow: none;
}
.owl-carousel .owl-nav button.owl-prev  {
  left: 20px;
}
.owl-carousel .owl-nav button.owl-next {
  right: 20px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev { 
  position: absolute;
  border-radius: 100%;
  border: 2px solid #FFF;
  color: #FFF;
  top: 50%;
  transform: translate(0, -10%);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 40px;
  z-index: 10; 
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: rgba(255, 255, 255, 0.2); 
  color: #FFF;
  border: 2px solid #D3D3D3;
}
[class^="flaticon-"]:before, 
[class*=" flaticon-"]:before, 
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  text-align: center;
  margin-left: 0;
} 
[class^="flaticon-"]:before,  
[class^="flaticon-"]:after {
  font-size: 15px;
}
.owl-dots {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-dot {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  border: 1px solid #000;
  background: transparent;
  margin-right: 5px;
  display: inline-block; 
}
.owl-carousel button.owl-dot.active {
  background: #22376D;
}
.owl-carousel button.owl-dot {
  background: #D6D6D6;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
  margin-right: 15px;
}
.rating {
  unicode-bidi: bidi-override; 
  margin-bottom: 10px;
  display: inline-block;
}
.rating input {
  position: absolute;
  left: -999999px;
}
.rating label {
  display: inline-block;
  font-size: 0;
}
.rating > label:before {
  position: relative;
  font: 16px/1 FontAwesome;
  display: block;
  content: "\f005";
  color: #B6C1C7;
  background: -webkit-linear-gradient(-45deg, #B6C1C7 0%, #B6C1C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating > label:hover:before,
.rating > label:hover ~ label:before,
.rating > label.selected:before,
.rating > label.selected ~ label:before {
  color: #FCB551;
  background: -webkit-linear-gradient(-45deg, #FCB551 0%, #D69A45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.v-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-heading {
  position: relative;
  padding:10px 0 20px 0;
  font-size: 2rem;
  margin-bottom: 50px;
}
.section-heading:after {
  content: "";
  width: 47px;
  height: 3px;
  background-color: #eb3337;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-banner-main-block {
  position: absolute;
  z-index: 99;
  margin-top: 120px;
  left: 0;
  width: 100%;
}
.page-banner-main-block .page-banner-heading {
  font-size: 50px;
} 
.breadcrumb {
    border: 1px solid #5E789C;
  background-color: inherit;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  display: inline-flex;
  text-transform: uppercase;
}
.breadcrumb a {
  color: #FFF;
}
.page-banner-block .breadcrumb li+li:before {
  padding: 0 5px;
  color: #FFF;
  content: ">";
}
.img-fluid-img {
  width: 100%;
}
button:focus {
  outline: none;
}
.container-fluid {
  padding: 0;
  overflow: hidden;
}
.text-bold {
  font-weight: 600;
}
.btm-50 {
  margin-bottom: 50px;
}
.section  p {
	font-size: 19px;
	font-family: 'Roboto', sans-serif; 
}
.top-40 {
  margin-top: 40px;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
  box-shadow: none;
  background-color: #050D3C;
  color: #FFF;
}
.none-case {
  text-transform: none;
}


/* ================================= */
    /*===== Preloader =====*/
/* ================================= */
.preloader { 
  background-color: #eb3337;
  bottom: 0;
  top: 0;
  left: 0; 
  right: 0;  
  position: fixed;
  z-index: 9999999;
}
.spinner {
  width: 60px;
  height: 60px;
  top:30%;	
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F5F5F5;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/* ================================= */
    /*===== Top Bar =====*/
/* ================================= */
.top-bar-main-block {
  background-color: #040C39;
  padding: 15px 0;
}
.top-nav a {
  color: #EDEDED;
}
.top-nav a:hover {
  color: #eb3337;
}
.top-nav ul li {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
}
.top-nav ul li+li {
  margin-right: 15px;
}
.top-nav ul .login a:after {
  content: "/";
  color: #EDEDED;
  padding-left: 5px;
}
.language-select {
  z-index: 999999;
}
.top-nav .dropdown {
  border-left: 1px solid #EDEDED;
  padding-left: 10px;
}
.top-nav .dropdown i {
  margin-right: 10px;
  margin-left: 10px;
}
.top-nav ul li a i {
  margin-right: 3px;
}
.top-bar-social ul li {
  display: inline-block;
  color: #EDEDED;
  font-size: 14px;
  padding-right: 15px;
  line-height: 1;
}
.top-bar-social ul li:last-child {
  padding-right: 0;
}
.top-bar-social .call {
  font-size: 15px;
  border-right: 1px solid #EDEDED;
  margin-right: 15px;
}
.top-bar-social .call i {
  font-size: 13px;
  margin-right: 8px;
}
.top-bar-social .call a {
  font-size: 14px;
}
.top-bar-social ul li a {
  color: #EDEDED;
}
.top-bar-social ul li a:hover {
  color: #eb3337;
}
.dropdown-menu {
  padding: 25px;
}
.dropdown-menu li {
  margin-bottom: 10px;
}
.dropdown-menu li a {
  color: #040C39;
}
@media (max-width: 767px) {
  .top-nav {
    text-align: center;
  }
  .top-bar-social {
    text-align: center!important;
  }
  .top-bar-main-block {
    padding: 20px 0;
  }
}

/* ================================= */
    /*===== Top Nav Bar =====*/
/* ================================= */
.nav-bar-main-block {
  z-index: 99999;
  width: 100%;
  padding: 15px 0;
}
.logo {
  /*padding-top: 25px;*/
  /*padding-bottom: 20px;*/
}
.navigation-btn {
  text-align: right;
  padding-top: 25px;
}
#cssmenu > ul > li.has-sub > a {
  font-weight: 500;
}
@media (max-width: 785px) {
  #cssmenu > ul > li > a {
    padding: 10px ;
  }
  #cssmenu.small-screen ul ul li a {
    padding-left: 25px;
    padding: 12px 25px;
    margin-left: 0;   
  }
  #cssmenu.small-screen ul ul li:last-child a {    
    margin-bottom: 0;
  }
  #cssmenu.small-screen ul ul,
  #cssmenu.small-screen ul ul ul,
  #cssmenu.small-screen.align-right ul ul {  
    top: 0;
  }
  #cssmenu.small-screen .submenu-button.submenu-opened {
    background: #eb3337;
    color: #FFF;
  }
  #cssmenu.small-screen .submenu-button{
  	height: 45px;
  	width: 45px;
  }
  #cssmenu.small-screen ul ul{
    border-top: none;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); 
  }
  #cssmenu.small-screen #menu-button:after{
  	    height: 9px;
  }
}
@media (max-width: 767px) {
  .home-slider-bg{
    height: auto!important;
  }
  .navigation-btn {
    text-align: center;
  } 
  .nav-bar-main-block {
    padding: 15px 0;
  }
  .logo {
    text-align: center;
  }
  .navigation-btn {
    display: none;
  }
}
@media (max-width: 576px) {
  .nav-bar-main-block {
    padding: 15px 0;
  }
  .home-main-block .slider-heading {
    font-size: 30px;
  }
  .about-block .about-points-block{
    margin-top:0px;
  }
.home-slider-bg{
  padding:50px 0;
}
.service-contact-img{
    height:auto;
}
    .country-contact-two .service-contact-dtl{
        padding:15px;
    }
}
.nav-bar-main-block .btn-primary:hover,.nav-bar-main-block .btn-primary:focus {
  background: #ee5e16;
  color: #FFF;
}

/* ================================= */
    /*===== Home Slider =====*/
/* ================================= */
.home-main-block {
  position: relative;
}
.home-slider-bg .overlay-bg {
  opacity: 0.2;
  background-color: #121B51;
}
.home-slider-bg {
  width: 100%;
  height: 100vh;
  background-position: 50% 0;
  display:flex;
  align-items:center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.slider-dtl {
  margin-top: 272px;
}
.home-main-block .carousel-item {
    height:calc(100vh - 120px);
}
@supports (height: 100dvh) {
  .home-main-block .carousel-item {
    height: calc(100dvh - 120)!important;
  }
  .home-main-block .carousel-item {
     height: calc(100dvh - 120px)!important;
  }
}

}
.slider-sub-heading {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
}
.slider-heading {
  margin-bottom: 60px;
  font-size: 40px;
}
.slider-btn .btn-white i {
  margin-left: 10px;
}
.slider-btn .btn-dark i {
  margin-left: 10px;
}
/*#cssmenu > ul > li.has-sub > a {*/
/*  margin-right: 5px;*/
/*}*/
@media (max-width: 576px) {
 .about-block .about-type{
    margin-bottom: 15px;
  }
  .slider-btn .btn-white {
    margin-bottom: 16px;
  }
  .slider-dtl {
    padding:  0;
  }
  .slider-dtl {
    margin-top: 0%;
  }
}

/* ================================= */
    /*===== About =====*/
/* ================================= */
.about-main-block {
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin:80px 0;
}
.about-points-block {
    display:flex;
  padding: 31px 40px;
  background-color: #eb3337;
  position: relative;
  margin-top: -117px;
  z-index: 1;
}
.about-points-icon {
  display: inline-block;
  color: #FFF;
  padding-right: 8px;
}
.about-points-icon img {
  vertical-align: baseline;
}
.about-point-dtl {
  display: inline-block;
  color: #FFF;
  vertical-align: top;
}
.about-point-heading {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.about-point-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.about-type {
  padding: 40px 55px;
  background-color: #F5F5F5;
  margin-bottom: 100px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-block:hover .about-type {
  background-color: #FFF;
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); 
text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);   
}
.number {
  position: absolute;
  font-size: 110px;
  bottom: 70px;
  right: 20px;
  z-index: 10;
  opacity: 0.09;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}
.about-sub-heading{
    background-color:#121b51;
    padding:15px;
    margin-left:40px;
    border-radius:12px;
}

.about-type p {
  margin-bottom: 34px;
}
.about-type i {
  color: #eb3337;
  margin-left: 12px; 
}
.about-main-block .section-heading:after {
  margin: 0;
}
.about-icon {
  padding: 1px;
  margin-right:-30px;
}
.about-heading {
  font-size: 22px;
  color:#fff;
}

.about-dtl {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the cards */
    /*max-width: 500px; */
}

.strategy-mission-card {
    display: flex;
    align-items: center;
    background-color: #0010f11c; /* White background for the card */
    border-radius: 15px; /* Rounded corners */
    padding: 20px 25px; /* Padding inside the card */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    gap: 20px; /* Space between icon and text */
    transition:all 0.5s ease;
}
.strategy-mission-card:hover{
    background-color: #121B51;
    transform: scale(0.95); 
}
.strategy-mission-card:hover .card-heading ,.strategy-mission-card:hover .card-text {
    color:#fff;
}
.strategy-mission-card:hover .icon-wrapper{
    background-color:#eb3337;
    outline-color:#fff;
}
.icon-wrapper {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 60px; /* Adjust icon container size */
    height: 60px; /* Adjust icon container size */
    background-color: #121B51; /* Light blue background for the icon circle */
    border-radius: 50%; /* Make it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    outline:2px solid #eb3337;
    outline-offset:4px;
}

.styled-icon {
    width: 35px; /* Size of the icon image itself */
    height: 35px; /* Size of the icon image itself */
    object-fit: contain; /* Ensure the image fits without distortion */
}

.card-heading {
    font-size: 1.25rem; /* Adjust heading size */
    color: #333; /* Darker text for heading */
    margin-bottom: 5px;
    font-weight: 600; /* Semi-bold */
}

.about-dtl .card-text {
    font-size: 0.95rem; /* Adjust paragraph size */
    color: #666; /* Softer text for paragraph */
    line-height: 1.5;
    margin-bottom: 0;
}

.about-sub-heading p {
  /*margin-bottom: 35px;*/
  color:#fff;
}
.about-main-block .section {
  margin-bottom: 50px;
} 
.about-main-block .section-heading {
  margin-bottom: 37px;
}
@media (max-width: 992px) {
  .about-icon {
    text-align: center!important;
    margin-bottom: 10px;
  }
  .about-sub-heading {
    text-align: center!important; 
  }
  .about-img {
    display: none;
  }
  .about-dtl {
    margin-bottom: 30px;
  }
  .about-main-block .section-heading {
    text-align: center;
  }
  .about-main-block .section-heading:after {
    margin: 0 auto;
  }
  .about-main-block .section {
    margin-bottom: 50px;
  }
  .about-points-block{
      margin-top:0;
      padding:20px;
  }
  .about-type{
      padding:20px;
      margin-bottom:25px;
  }
}
@media (max-width: 576px) {
  .about-main-block .section-heading:after {
    margin: 0 auto;
  } 
  .about-block {
    padding-bottom: 40px;
  }
  .number {
    bottom: 110px;
  }
  .about-main-block .section p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about-block {
    padding-bottom: 40px;
  }
  .number {
    bottom: 110px;
  }
}

/* ================================= 
    /*===== Choose Country =====*/
/* ================================= */
.choose-country-main-block {
  padding: 100px 0;
  background-color: #121B51;
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;  
  background-attachment: fixed;  
}
/*.overlay-bg-shape{*/
/*    background-repeat: repeat-x;*/
/*    background-position: center;*/
/*    animation: slide 60s */
/*linear infinite;*/
/*    -webkit-animation: slide 60s */
/*linear infinite;*/
/*}*/
@keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}

.choose-country-main-block:before {
    position: absolute;
    content: '';
    background-color: #121B51;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.95;
}
.choose-country-heading {
  margin-bottom: 15px;
}
.choose-country-main-block .overlay-bg {
  background-color: #050D3C;
  opacity: 0.9;
}
.choose-country-block {
  background-color: #FFF;
  padding: 39px 30px;
  margin-bottom: 30px;
}
.choose-country-heading a {
  color: #232323;
}
.choose-country-dtl i {
  margin-left: 10px;
  color: #eb3337;
}
.choose-country-dtl .btn-link {
  padding-left: 0;
}
@media  (min-width:1200px){
    #cssmenu > ul > li > a{
        font-size:14px!important;
    }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .choose-country-block {
    background-color: #FFF;
    padding: 25px;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .choose-country-block {
    text-align: center!important;
  }
  .choose-country-icon {
    margin-bottom: 10px;
  }
  .choose-country-dtl p {
    text-align: center;
    max-width: 100%;  
    margin: 0 auto 30px;
  }
}

/* ================================= */
    /*===== Visa Features =====*/
/* ================================= */
.visa-features-main-block {
  padding: 80px 0px 0px 0;
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   
  position: relative;      
}
.features-block {
  background-color: #FFF;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.05);
}
.features-block:hover {
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.features-dtl {
  padding: 25px 30px;
  background-color: #FFF;
}
.features-meta {
  font-size: 14px;
  margin-bottom: 13px;
}
.features-meta span {
  color: #eb3337;
  text-transform: uppercase;
}
.features-heading a {
  color: #232;
}
@media (max-width: 992px) {
  .features-block {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .features-block {
    margin-bottom: 30px;
  }
}

/* ================================= */
    /*===== Visa Map =====*/
/* ================================= */
.visa-map-main-block {
  padding: 80px 0;
}
.map-dtl .section-heading:after {
  margin: 0;
}
.map-dtl .section-heading {
  margin-bottom: 35px;
}
.map-dtl p {
  font-size: 19px;
  margin-bottom: 35px;
  font-family: 'Roboto', sans-serif;   
}
.map-dtl .btn-primary:hover {
  background-color: #121B51;
  color: #FFF;
}
.map-dtl i {
  margin-left: 10px;
}
@media (min-width: 767px) and (max-width: 992px) {
  .visa-map-img {
    margin-bottom: 5px;
  }
  .map-dtl {
    padding: 60px;
  }
 .section-heading-lft-2 {
    width: 431px;
  }
}
@media (max-width: 576px) {
 .map-dtl p {
  }
 .section-heading-lft-2 {
    width: 331px;
  }
}

/* ================================= */
    /*===== Visa Services =====*/
/* ================================= */
.visa-Services-main-block .section-heading:after {
  margin: 0;
  background-color: #FFF;
}
.services-dtl .section-heading {
  margin-bottom: 37px;
}
.services-dtl {
  background-color:#eb3337;
  padding: 100px 44px;
  height: 500px;
}
.services-dtl p {
  color: #FFF;
  font-size: 19px;
  margin-bottom: 35px;
}
.service-dtl a {
  padding: 5px;
}
.services-dtl i {
  margin-left: 10px;
}
.service-block {
  padding: 50px 60px;
  height: 500px;
  position: relative;
  background-size: cover;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  background-attachment: fixed;  
}
.visa-service-heading {
  font-size: 22px;
}
/*.service-dtl-icon {*/
/*  margin-bottom: 30px;*/
/*}*/
.service-icon i {
  font-size: 48px;
  color: #eb3337;
}
.service-icon [class^="flaticon-"]:before, 
[class^="flaticon-"]:after {
  font-size: 55px;
}
.visa-service-dtl a {
  color: #FFF;
}
.visa-service-dtl p {
  color: #F7F7F7;
}
.service-block .overlay-bg {
  opacity: 0.8;
  background-color: #121b51;
}
@media (max-width: 992px) {
  .service-block {
    height: 550px;
  }
  .visa-service-dtl {
    text-align: center;
  }
  .service-block {
    padding: 50px 70px;
  }
  .service-icon i {
    text-align: center;
    left: 0;
    right: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .visa-service-dtl p {
    margin-bottom: 40px;
  }
  .service-block {
    height: 680px;
  }
}
@media (max-width: 576px) {
  .service-dtl-icon {
    margin-bottom: 0;
  }
  .services-dtl{
      height:auto!important;
      padding: 20px 44px;
  }
  .service-block {
    height: 1000px;
  }
  .service-icon {
    text-align: center;
  }
}

/* ================================= */
    /*===== Testimonial =====*/
/* ================================= */
.testimonial-main-block {
  padding: 100px 0 80px;
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-dtl {
  text-align: center;
}
.testimonial-block-slider {
  margin-bottom: 40px;
}
.testimonial-block-slider.owl-carousel .owl-item img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-client-img {
  margin-bottom: 30px;
  position: relative;
}
.testimonial-client-img img {
  border-radius: 100%;
}
.testimonial-client-img i {
  position: absolute;
  color: #eb3337;
  top: 10px;
  right: 475px;
}
.testimonial-client-img [class^="flaticon-"]:before, 
[class^="flaticon-"]:after {
  font-size: 40px;
}
.rating ul li {
  display: inline;
  margin-bottom: 19px;
}
.rating ul li i{
  color: #eb3337;
}
.testimonial-dtl{
      padding: 20px;
      border-radius:12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
}
.testimonial-dtl  p {
  font-size: 19px;
  padding:0;
  margin: 0 auto;
  margin-bottom: 32px;
}
.testimonial-block-slider .owl-stage-outer{
    padding:20px 0;
}
.testimonial-block-slider .owl-carousel .item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-block-slider.owl-carousel .owl-item .testimonial-icon img {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-icon ul li {
  display: inline-block;
  font-size: 16px;
  font-style: italic;
  color: #777;
  vertical-align: -webkit-baseline-middle;
}
.testimonial-icon {
  margin-bottom: 35px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #232323;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.testimonial-main-block .owl-carousel .owl-nav button.owl-prev  {
  left: 0;
}
.testimonial-main-block .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.testimonial-main-block .owl-carousel .owl-nav button.owl-next,
.testimonial-main-block .owl-carousel .owl-nav button.owl-prev { 
  position: absolute;
  border-radius: 100%;
  border: 2px solid #D3D3D3;
  background-color: #FFF;
  color: #eb3337;
  font-size: 18px;
  top: 35%;
  transform: translate(0, -10%);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 40px;
  z-index: 10; 
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.testimonial-main-block .owl-carousel .owl-nav button.owl-next:hover,
.testimonial-main-block .owl-carousel .owl-nav button.owl-prev:hover {
  color: #FFF;
  background-color: #121B51;
}
.testimonial-post {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 50px;
}
@media (max-width: 992px) { 
  .testimonial-dtl  p {
    padding: 20px;
  }
  .testimonial-client-img i {
    display: none;
  }
}
@media (min-width: 1100px) and (max-width: 1270px) {
  .testimonial-main-block .owl-nav {
    display: none;
  }
}
/* ================================= */
    /*===== Blog =====*/
/* ================================= */
.blog-main-block {
  padding: 100px 0;
}
.blog-main-block .section-heading:after {
  margin: 0;
}
.blog-btn {
  text-align: right;
}
.blog-img {
  position: relative;
}
.meta-dtl {
  padding: 3px 16px;
  position: absolute;
  z-index: 99999;
  background-color: #eb3337;
  top: 0;
  text-align: center;
  display: block;
}
.meta-dtl .date {
  font-size: 25px;
  font-weight: 700;
}
.meta-dtl .month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.meta-dtl a {
  font-family: 'Roboto', sans-serif;
  color: #FFF;
}
.blog-block {
  border: 1px solid #EAEAEA;
  background-color: #FFF;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog-block:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.blog-dtl {
  padding: 20px 25px 20px 35px;
}
.blog-sub-heading {
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.blog-heading {
  font-size: 17px;
  margin-bottom: 17px;
}
.blog-heading a {
  color: #222;
}
.blog-dtl .btn-link {
  padding: 0;
}
.blog-dtl .btn-link i {
  margin-left: 8px;
  color: #eb3337;
}
.blog-block:hover .btn-link {
  color: #eb3337;
}
.blog-icon a {
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
}
.blog-icon i {
  font-size: 13px;
  margin-right: 5px;
}
.blog-btn .btn-primary i {
  padding-left: 8px;
}
.blog-btn .btn-primary:hover {
  background: #050D3C;
  color: #FFF;
}
@media (max-width: 992px) {
  .blog-btn {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 15px;
  }
  .blog-main-block .blog-img img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .blog-btn {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* ================================= */
    /*===== Visa Type =====*/
/* ================================= */
.visa-type-block {
  padding: 70px 0;
  position: relative;
}
.visa-type-icon img {
  padding: 10px;
  background-color: #FFF;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-bottom: 28px;
}
.visa-type-heading {
  text-align: center;
}
.visa-type-block .visa-type-icon img {
  border: 5px solid #AAA;
}
.overlay-bg-blue {
  opacity: 0.8;
  background-color: #121B51;
}
.overlay-bg-black {
  opacity: 0.7;
  background-color: #000;
}
.visa-type-block p {
  text-align: center;
  margin-bottom: 25px;
}
.visa-type-block i {
  margin-left: 10px;
  width: 16px;
  height: 1px;
}
.visa-type-block:hover {
  background-color: rgba(0, 0, 0, 0.10);
}
@media (max-width: 767px) {
  .visa-type-block {
    padding: 60px 0 ;
  }
  .visa-type-block .visa-type-icon {
    text-align: center;
    margin-bottom: 20px;
  }
  .visa-type-block p {
    text-align: center;
    margin-bottom: 20px;
  }
  .visa-type-block .btn {
    text-align: center;
  }
}

/* ================================= */
    /*===== Patners =====*/
/* ================================= */
.patners-main-block {
  padding: 55px ;
  background-color: #FFF;
}
.item-patners-img {
  margin-left: 50px;
}
.patners-slider.owl-carousel .owl-item img {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}

/* ================================= */
    /*===== Visa Consultation  =====*/
/* ================================= */
.visa-consultation-main-block {
  padding:100px 0;
  position: relative;
  height: 770px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.visa-consultation-main-block .overlay-bg {
  background-color: rgba(246, 246, 246, 0.92);
}
.visa-consultation-form {
  padding: 80px 115px;
  background-color: #FFF;
}
.visa-consultation-form span {
  color: #eb3337;
}
.visa-consultation-form .form-control {
  border-radius: 4px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #777;
  height: 50px;
}
.visa-consultation-form select.form-control:not([size]):not([multiple]) {
  height: 50px;
  padding: 8px 10px;
}
.visa-consultation-form .form-group label:after {
  content: "*";
  padding-left: 5px;
  color: #eb3337;
}
.visa-consultation-form label {
  font-family: 'Poppins', sans-serif;
  color: #232;
}
.request-button .btn-primary {
  margin-top: 30px;
  padding: 13px 60px;
  width: 100%;
}
.request-button .btn-primary:hover {
  color: #FFF;
  background: #050D3C; 
}
.request-button i {
  margin-left: 8px;
}
.request-button a:hover {
  color: #FFF;
}
.visa-consultation-dtl {
  background-color: #121B51;
  width: 100%;
  height: auto;
}
.visa-consultation-block {
  position: absolute;
  box-shadow: 0px 0px 30px 0px rgba(18, 27, 81, 0.1); 
}
.visa-consultation-dtl p { 
  color: #FFF;
  font-size: 20px;
  padding: 15px 150px;
  margin: 0;
}
.visa-consultation-dtl p i {
  color: #eb3337;
  padding-right: 15px;
  margin-top: 10px; 
}
.visa-consultation-dtl [class^="flaticon-"]:before, 
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 28px;
  vertical-align: middle;
}
.visa-consultation-dtl a:hover {
  color: #eb3337;
}
@media (max-width: 992px) {
  .visa-consultation-main-block {
    padding: 30px 0 950px 0;
  }
  .visa-consultation-dtl p {
    padding: 20px;
  }
  .visa-consultation-form {
    padding: 60px;
  }  
}
@media (max-width: 576px) {
  .visa-consultation-dtl p {
    padding: 20px;
  }
  .visa-consultation-form {
    padding: 20px;
  }  
}
@media (max-width: 1200px) {
  .visa-consultation-main-block {
    position: relative;
  }
  .visa-consultation-block {
    position: absolute;    
    top: auto;
    left: 0;
    right: 0;
  }
}

/* ================================= */
    /*===== Footer  =====*/
/* ================================= */
.footer-main-block {
  padding: 70px 0 0;
  position:relative;
  background-color: #050D3C;
}
.footer-main-block::before{
    content:"";
    background-image:url('/images/footer-bg.jpg');
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    z-index:1;
    right:0;
}
.footer-main-block .overlay-bg{
    z-index:2;
}
.footer-main-block .container{
    position:relative;
    z-index:4;
}

.about-widget {
  margin-bottom: 60px;
}
.logo-footer {
  margin-bottom: 20px;
}
.footer-icon {
  color: #eb3337;
  width: 100%;
  margin: 0 auto;
}
.footer-icon [class^="flaticon-"]:before, 
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 30px
}
.footer-address ul li {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-address {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-address-dtl {
  font-size: 16px;
  margin-bottom: 25px;
}
.footer-address-dtl a{
  color: #fff;
}
.about-widget p {
  color: #E3E3E3;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  margin-bottom: 36px;
}
.visa-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; 
  margin-bottom: 35px;
  padding-top: 17px;
  text-transform: uppercase;
}
.visa-footer-list ul li {
  margin-bottom: 18px;
}
.visa-footer-list ul li i {
  color: #E3E3E3;
  font-size: 13px;
  margin-right: 5px;
}
.visa-footer-list ul li a {
  color: #E3E3E3;
  font-size: 17px;
}
.recent-news-footer p {
  color: #E3E3E3;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
}
.date-footer {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #eb3337;
}
.date-footer [class^="flaticon-"]:before,  
[class^="flaticon-"]:after {
  font-size: 12px;
  margin-right: 5px;
}
.recent-news-widget hr {
  background-color: #D0D0D0; 
  margin-bottom: 20px;
}
.news-widget p {
  color: #E3E3E3;
  font-size: 17px;
  margin-bottom: 27px;
}
.news-widget .form-group {
  display: inline-block;
  float: left;
}
.news-widget .form-control {
    border:2px solid #121B51;
  width: 160px;
  height: 50px;
  border-radius: 0;
  background-color: #121B51;
  color: rgba(255,255,255,0.7);
}
.news-widget .btn-primary {
  width: 95px;
  height: 50px;
  padding: 4px;
  border-radius: 0;
}
.news-widget .footer-social ul li {
  display: inline-block;
  color: #CECECE;
  font-size: 16px;
  padding-right: 4px;
  line-height: 1;
  text-transform: uppercase;
}
.footer-social ul li a {
  color: #CECECE;
  font-size: 16px;
  margin-right: 5px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-social ul li a:hover {
  color: #eb3337;
}
.tiny-footer {
    position:relative;
    z-index:4;
  /*background-color: #000E2F;*/
  padding: 20px 0;
}
.copyright-footer-block {
  background-color: #000E2F;
  color: #EDE;
  padding: 22px 0 16px;
}
.copyright-block p {
  color: #E4E4E4;
  font-size: 16px;
}
.copyright-block p a,
.copyright-block a {
  color: #E4E4E4;
  font-size: 16px;
}
.copyright-social ul li {
  font-size: 16px;
  display: inline;
}
.copyright-social ul li a {
  color: #E4E4E4;
}
.copyright-social ul .policy:after {
  content: "/";
  color: #E4E4E4;
  padding-left: 10px;
  padding-right: 10px;
}
.copyright-social .dropdown i {
  margin-left: 10px;
  margin-right: 10px;
}
.copyright-social .dropdown a {
  margin-left: 30px;
  color: #E4E4E4;
}
.copyright-social .dropdown-menu li a {
  margin-bottom: 20px;
}
.copyright-social .dropdown-menu li a {
  color: #040C39;
}
@media (max-width: 767px) {
  .tiny-footer {
    text-align: center;
  }
  .copyright-social {
    text-align: center;
  }
  .news-widget .footer-social ul li {
    padding-right: 3px;
  }
  .news-widget .form-control {
    width: 150px;
  }
  .news-widget .btn-primary {
    width: 90px;
  } 
  .recent-news-widget {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .about-widget .footer-address {
    margin-bottom: 22px;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
  .news-widget .btn-primary {
    width: 115px;
  }
  .news-widget p {
    margin-bottom: 40px;
  }
  .footer-social {
    margin-bottom: 20px;
  }
  .footer-form {
    margin-bottom: 20px;
  }
  .recent-news-widget .footer-img img {
    width: 50%;
    margin-bottom: 20px;
  }
  .copyright-social .dropdown a {
    display: none;
  }
}

/* ================================= */
    /*===== About Home Page  =====*/
/* ================================= */
.home-slider-block-two {
  width: 100%;
  height: 350px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.home-slider-block-two .overlay-bg {
  /* opacity: 0.7; */
  background-color: #121B51;
}
.page-banner-main-block {
  text-align: center;
}

/* ================================= */
    /*===== About Page  =====*/
/* ================================= */
.about-main-block-two {  
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.about-block-dtl-two .section-heading {
  margin-bottom: 37px;
}
.about-block-dtl-two .section-heading:after {
  margin: 0;
}
.about-block-img-two {
  margin-bottom: 81px;
}
.about-block-img-two img {
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.about-block-dtl-two p {
  margin-bottom: 37px;
}
.about-block-dtl-two .btn-primary:hover {
  background: #050D3C;
  color: #FFF;
}
.about-block-dtl-two .btn-primary i {
  padding-left: 8px;
}
.about-block-two {
  border: 1px solid #E4E4E4;
  padding: 39px 42px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-block-two:hover {
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.about-block-two {
  padding: 35px 40px;
}
.about-icon-two {
  height: 62px;
  margin-bottom: 25px;
}
.about-dtl-two .about-heading {
  margin-bottom: 15px;
}
@media (max-width: 992px){
  .about-block-two {
    margin-bottom: 30px;
    text-align: center;
  }
  .about-block-dtl-two .section {
    margin-bottom: 40px;
  }
  .about-block-img-two {
    margin-bottom: 20px;
  }
  .about-block-dtl-two .btn-primary {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .about-block-img-two {
    margin-bottom: 20px;
  }
}

/* ================================= */
    /*===== Facts =====*/
/* ================================= */
.facts-main-block {
  background-color: #eb3337;
  padding: 50px ;
}
.facts-dtl {
  font-size: 20px;
}
.facts-heading {
  font-size: 60px;
  display: inline-block;
  font-weight: 500;
}
.facts-heading-sign {
  display: inline-block;
}
@media (max-width: 992px) {
  .facts-main-block {
    padding: 40px 0;
  }
  .facts-dtl {
    margin-bottom: 30px;
  }
}

/* ================================= */
    /*===== About Patners  =====*/
/* ================================= */
.patners-main-block-two {
  padding: 118px;
}
.patners-main-block-two .section-heading {
  margin-bottom: 60px;
}
.patners-main-block-two .patners-img {
  margin-bottom: 20px;
  border: 1px solid #E9E9E9; 
  padding: 60px 54px; 
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.patners-main-block-two .patners-img:hover {
  border: 1px solid #eb3337;
}

/* ================================= */
    /*===== Team Our Staff =====*/
/* ================================= */
.our-staff-main-block {
  padding: 100px 0;
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.our-staff-main-block .section-heading {
  font-weight: 600;
}
.our-staff-block {
  margin-bottom: 59px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.our-staff-img {
  width: 100%;
  position: relative;
}
.font-icon-hover {
  position: absolute;
  top: 149px;
  bottom: 0;
  right: 0;
  background-color: #eb3337;
  width: 175px;
  height: 30px;
  line-height: 1.8;
  padding-left: 18px;
  margin-right: -130px;
  border-radius: 15px 0 0 15px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.font-icon-hover:hover {  
  margin-right: 0;
}
.font-icon-hover i {
  margin-right: 15px;
}
.font-icon-hover a {
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
}
.font-icon {
  position: absolute;
  top: 149px;
  bottom: 0;
  right: 5px;
  background-color: #eb3337;
  width: 45px;
  height: 30px;
  margin-right: 15px;
  opacity: 1;
  border-radius: 15px 0 0 15px;
}
.our-staff-dtl {
  background-color: #FFF;
  padding: 22px 26px;
}
.our-staff-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.our-staff-heading a {
  color: #232;
}
.our-staff-dtl p {
  margin-bottom: 19px;
}
.social-icon-staff ul li {
  display: inline; 
}
.social-icon-staff ul li a {
  display: inline;
  color: #BEBEBE;
  padding: 5px;
  font-size: 14px;
}
.social-icon-staff a:hover {
  color: #eb3337;
}
.social-icon-staff ul li:first-child a {
  padding-left: 0;
}
@media (max-width: 767px) {
  .font-icon-hover {
    top: 139px;
  }
}
@media (max-width: 567px) {
  .font-icon-hover {
    top: 229px;
  }
}
@media (max-width: 576px) {
  .patners-main-block-two {
    padding: 40px;
  }
}

/* ================================= */
    /*===== Team Contact Us  =====*/
/* ================================= */
.team-contact-main-block {
  padding: 70px 30px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.team-contact-main-block .overlay-bg {
  opacity: 0.85;
  background-color: #eb3337;
}
.team-contact-main-block .contact-block {
  position: relative;
  padding: 0 80px;
}
.team-contact-main-block .contact-heading {
  font-size: 26px;    
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.team-contact-main-block .contact-heading span {
  font-weight: 600;
}
.team-contact-main-block .contact-btn .btn-secondary i {
  padding-left: 8px;
}
@media (max-width: 767px) {
  .team-contact-main-block .contact-block {
    padding: 0 10px;
  }
}

/* ================================= */
    /*===== Faq Page =====*/
/* ================================= */ 
.faq-main-block {
  background-color: #F6F6F6;
  padding: 100px 0;
}
.faq-block {
  padding: 60px 60px 10px 60px; 
  background-color: #FFF;
}
.faq-heading {
  margin-bottom: 51px;
}
.faq-dtl .second-accordion {
  margin-bottom: 80px;
}
.faq-dtl .second-accordion .card-header {
  background: transparent;
  border-bottom: 0;
}
.card-header .btn {
  padding: 0;
  font-size: 17px;
  font-weight: 500;
}
.faq-dtl .second-accordion .card-header button.btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: #eb3337;
  font-weight: 500;
  position: relative;
  text-transform: none;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.faq-dtl .second-accordion .card-header button.btn:hover,
.faq-dtl .second-accordion .card-header button.btn.collapsed {
  color: #232323;
}
.faq-dtl .second-accordion .card {
  border: 0;
  border: 1px solid #E2E2E2;
  padding: 5px;
  margin-bottom: 10px;
}
.faq-dtl .second-accordion .card-header button.btn[aria-expanded="false"]:after {
  position: absolute;
  content: "\+";  
  right: 37px;
  color: #777;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 28px;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 500;
}
.faq-dtl .second-accordion .card-header button.btn[aria-expanded="true"]:after {
  content: "\-"; 
  right: 37px;
  position: absolute;
  color:  #777;
  width: 30px;
  text-align: center;
  font-size: 30px;
  height: 30px;
  line-height: 20px;
  font-weight: 500;
  color: #eb3337;
}
.faq-dtl .second-accordion .card-header button.btn[aria-expanded="true"]:hover:after{
  color: #eb3337;
}
@media (max-width: 992px) {
  .faq-main-block .btn {
    white-space: initial;
  }
}
@media (max-width: 576px) {
  .faq-block{
    padding: 30px 30px 20px 30px; 
  }
  .faq-main-block .btn {
    white-space: initial;
  }
  .faq-dtl .second-accordion .card-header button.btn {
    position: initial;
  }
  .faq-dtl .second-accordion .card-header button.btn[aria-expanded="false"]:after {
    right: 10px;
  }
  .faq-dtl .second-accordion .card-header button.btn[aria-expanded="true"]:after {
    right: 10px; 
  }
} 

/* ================================= */
    /*===== Coaching Page =====*/
/* ================================= */  
.coaching-main-block-two {
  padding: 100px 0;
  background-color: #F6F6F6;
}
.coaching-two {
  margin-bottom: 40px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}
.coaching-two:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}
.coaching-dtl  {
  padding: 25px 38px;
  background-color: #FFF;
}
.coaching-dtl .coaching-meta {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 13px;
  color: #eb3337;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.coaching-heading {
  font-size: 18px;
}
.coaching-dtl .coaching-heading a {
  color: #232;
  margin-bottom: 17px;
}
@media (max-width: 992px) {
  .tweet-block {
    text-align: center;
  }
  .country-contact-two img {
    text-align: center;
  }
  .pagination {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .pagination {
    margin-bottom: 40px;
    text-align: center;
  }
  .country-contact-two img {
    text-align: center;
  }
}

/* ================================= */
    /*===== Coaching Detail Page =====*/
/* ================================= */  
.coaching-details-block-two {
  background-color: #FFF;
}
.coaching-details-two {
  padding: 40px 40px 0;
}
.coaching-details-two hr {
 margin-bottom: 28px;
}
.coaching-details-two .details-button-two {
  margin-bottom: 30px;
}
.coaching-details-two .details-button-two a i {
  font-style: italic;
}
.coaching-details-meta {
  font-size: 12px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 13px;
  color: #eb3337;
}
.coaching-details-heading-two {
  padding: 35px 0 0;
}
.coaching-list ul li {
  padding: 20px 0 0;
  font-size: 17px;
}
.coaching-list ul li:last-child {
  margin-bottom: 20px;
}
.fee-structure {
  color: #333;
}
.coaching-fee {
  color: #eb3337;
}
.applications-heading {
  color: #777;
  font-size: 18px;
  font-weight: 400;
}
.coaching-application p {
  margin-bottom: 30px;
}
.coaching-application ul li {
  padding: 5px 20px ;
  font-style: italic;
  font-size: 18px;
}
.applications i {
  font-size: 14px;
  color: #eb3337;
  margin-right: 10px;
}
.exam-block{
  margin-bottom: 40px;
}
.coaching-exam .coaching-subheading {
  font-size: 18px;
}
.exam-Pattern-min {
  font-size: 16px;
  font-style: italic;
}
@media (max-width: 576px) {
  .coaching-application ul li {
    margin-bottom: 15px;
  }
}

/* ================================= */
    /*===== Blog Page  =====*/
/* ================================= */ 
.blog-news-headinng {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-main-block-two {
  padding: 100px 0;
  background-color: #F6F6F6; 
}
.blog-block-section {
  margin-bottom: 80px;
}
.blog-block {
  margin-bottom: 50px;
}
.blog-heading-one {
  font-size: 20px;
}
.blog-main-block-two .btn-link i {
  color: #eb3337;
  padding-left: 8px;
}
.blog-main-block-two .blog-block:hover {
  box-shadow: none;
}
.blog-main-block-two .form-group-two .form-control {
  padding: 20px 20px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.blog-block [class^="flaticon-"]:before, 
[class^="flaticon-"]:after {
  font-size: 15px;
  font-weight: 800;
} 
.blog-img-two {
  position: relative;
}
.search-block .form-group {
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  margin-bottom: 50px;
}
.search-block .form-group i {
  position: absolute;
  right: 30px;
  top: 20px;
}
.search-block .form-control {
  height: 58px;
  border-radius: 2px;
  color: #777;
}
.news-block-dtl p {
  font-size: 15px;
  color: #222;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}
.news-meta-block .date {
  font-size: 13px;
  color: #eb3337; 
}
.date [class^="flaticon-"]:before, 
[class^="flaticon-"]:after {
  font-size: 10px;
  font-weight: 800;
}
.news-meta-block .date:hover {
  color: #eb3337;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
} 
.news-block {
  border-bottom: 1px solid  #E8E8E8;
  padding: 18px 0; 
}
.news-block:last-child {
 border-bottom: none; 
}
.categories-block {
  margin: 50px 0;
}
.categories-list ul li {
  padding: 9px 0 14px;
  border-bottom: 1px solid #E8E8E8; 
}
.categories-list ul li a {
  font-size: 17px;
  color: #777;
}
.categories-list ul li a:hover {
  color: #292929;
}
.categories-list ul li .active {
  color: #292929;
}
.tweet-block {
  margin-bottom: 30px;
}
.tweet-block .owl-dots {
  text-align: left;
}
.tweet-block .owl-carousel button.owl-dot {
  background: #D6D6D6;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 1px;
  margin-right: 15px;
}
.tweet-block .owl-carousel button.owl-dot.active {
  border: 1px solid #eb3337;
  background: #FFF;
}
.tweet-dtl {
  margin-bottom: 16px;
}
.tweet-dtl i {
  color: #20AEFF;
  font-size: 14px;
  margin-right: 5px;
}
.tweet-link {
  font-size: 16px;
  margin-bottom: 20px;
}
.tweet-link a {
  border-bottom: 1px solid #eb3337;
}
.tweet-link a:hover {
  color: #eb3337;
}
.tag-widget .badge { 
  padding: 11px 14px;
  color: #777;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  border-radius: 4px;
  background-color: #FFF;
  margin-bottom: 10px;
  border: 1px solid #E8E8E8;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tag-widget .badge:hover {
  background-color: #121B51;
  color: #FFF;
}
.tag-widget a { 
  margin-right: 8px;
}
.video-item {
  text-align: center;
}
.video-device .bg_img {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.video-device {
  position:relative;
}
.video-item .video-preview,
.video-item .video-preview iframe {
  width: 100%;
  height: 422px;
}
.video-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index:30;
  width: 100%;
}
.btn-video-play img {
  margin: 0 auto;
  position: relative;
  top: 35%;
  left: 5%;
  transform: translate(-50%, -50%);
  z-index: 30;
}
.btn-video-play:hover {
  opacity: 0.8;
}
.blog-block {
  position: relative;
}
.blog-slider-bg {
  width: 100%;
  height: 400px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;  
  position: relative; 
}
.blog-block .owl-carousel .owl-nav button.owl-prev  {
  left: 40px;

}
.blog-block .owl-carousel .owl-nav button.owl-next {
    right: 40px;
}
.blog-block .owl-carousel .owl-nav button.owl-next,
.blog-block .owl-carousel .owl-nav button.owl-prev { 
  position: absolute;
  border: none;
  color: #FFF;
  font-size: 25px;
  top: 50%;
  transform: translate(0, -10%);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 40px;
  z-index: 10; 
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog-block .owl-carousel .owl-nav button.owl-next:hover,
.blog-block .owl-carousel .owl-nav button.owl-prev:hover {
  color: #FFF;
  background-color: transparent;
  border: none;
}
.page-item .page-link {
  margin-right: 5px;
  color: #9D9D9D;
  font-size: 17px;
  font-weight: 700;
  background-color: transparent;
  border: 1px solid #DBDBDB;
  border-radius: 0;
  font-family: 'Roboto', sans-serif;
}
.page-item .page-link:last-child {
  border-radius: 0;   
}
.page-item.active .page-link {
  margin-right: 5px;
  color: #eb3337;
  font-size: 17px;
  font-weight: 700;
  background-color: transparent;
  border: 1px solid #eb3337;
  border-radius: 0;  
}
.page-item .page-link:hover {
  border: 1px solid #eb3337;
  color: #eb3337;
}
@media (max-width: 992px) {
  .blog-main-block-two .tweet-block {
    text-align: left;
  }
  .news-block-main {
    margin-bottom: 30px;
  }
  .tweet-block .owl-carousel button.owl-dot {
    text-align: center;
  }
}
@media (max-width: 576px) { 
  .news-block .news-block-img {
    margin-bottom: 30px;
  }
}

/* ================================= */
    /*===== Blog Detail Page =====*/
/* ================================= */ 
.blog-detail {
  background-color: #FFF;
  padding: 37px 40px;
}
.blog-detail-heading {
  font-size: 14px;
  margin-bottom: 15px;
  color: #eb3337;
  text-transform: uppercase;
}
.blog-detail p {
  margin-bottom: 16px;
}
.paragraph {
  padding: 23px 10px;
}
.paragraph p {
  font-size: 17px;
  color: #232;
  border-left: 4px solid #eb3337;
  padding-left: 23px;
  text-transform: uppercase;
} 
.paragraph i {
  font-size: 16px;
  padding-right: 5px;
}
.paragraph [class^="flaticon-"]:before, 
[class^="flaticon-"]:after {
  font-size: 10px;
  vertical-align: top;
  font-weight: 100;
}
.blog-detail hr {
  border: 1px solid #DADADA;
  margin: 43px 0 20px;
}
.blog-social-list ul li {
  display: inline;
  border: 1px solid #E8E8E8;
  padding: 12px 0;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}
.blog-social-list ul li a {
  color: #777;
  padding: 17px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}
.blog-social-list ul li:first-child {
  padding: 0;
}
.blog-social-list ul li:hover {
  background-color: #eb3337;
}
.blog-social-list ul li:hover a {
  color: #FFF;
}
.blog-social-list {
  text-align: right;  
}
.blog-social-list ul li:first-child {
  border: none;
}
.blog-social-list .share {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}
.blog-social-list .share:hover {
  background-color: #FFF;
}
.blog-list-two  ul li {
  display: inline;
  font-size: 15px;
  font-style: italic;
}
.blog-list-two  ul li a {
  color: #777;
}
.blog-list-two .share {
  color: #333;
  font-weight: 550;
  text-transform: uppercase;
  font-style: normal;
}
.blog-list-two .share a {
  color: #333;
  font-weight: 550;
  text-transform: uppercase;
  font-style: normal;
}
.blog-detail-two {
  padding: 30px;
  background-color: #FFF;
  margin-bottom: 81px;
}
.blog-detail-img img {
  border-radius: 100%;
  width: 121px;
  height: 111px;
}
.author-name {
  padding: 15px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.author-title {
  margin-bottom: 33px;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.author-img img {
  display: inline-block;
  float: left;
  margin-right: 24px;
  border-radius: 100%;
}
.author-description {
  display: table;
}
.author-name {
  margin-bottom: 8px;
}
.author-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px
  text-transform: uppercase;
}
.author-description p {
  margin-bottom: 36px;
  padding-left: 15px;
  font-size: 18px;
}
.comment-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.author-btn .btn-secondary {
  font-size: 12px;
  padding: 8px 13px;
  border-radius: 0;
}
.author-btn .btn-secondary:hover {
  color: #FFF;
  background: #eb3337;
}
.about-author hr {
  margin-bottom: 33px;
  border-bottom: 1px solid #DADADA;
}
.author-block-one {
  padding: 0 0 0 104px;
}
.author-block {
  margin-bottom: 40px;
}
.appointment-form .comment textarea {
  width: 100%;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
  background-color: #FFF;
  padding: 24px 19px 0;
  font-size: 16px;
  color: #777;
}
.appointment-form {
  margin-bottom: 22px;
}
.contact-form-btn .btn-primary {
  padding: 18px 44px;
}
.blog-main-block-two .contact-form-btn {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .appointment-form .comment textarea {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-social-list {
    text-align: left;  
  }
  .blog-list-two {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .blog-social-list {
    text-align: left;  
  }
  .blog-list-two {
    margin-bottom: 20px;
  }
}

/* ================================= */
    /*===== Service Page  =====*/
/* ================================= */
.choose-country-main-block-two {
  padding: 80px 0 0 0;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.choose-country-main-block-two .choose-country-block-two {
  background-color: #FFF;
  padding: 20px;
}
.choose-country-main-block-two .choose-country-block {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.choose-country-main-block-two .choose-country-block:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.choose-country-block-two:hover .choose-country-icon img{
    transform:rotate(360deg);
}
.choose-country-main-block-two .choose-country-icon {
  margin-bottom: 28px;
}
.choose-country-main-block-two .choose-country-icon img{
    transition:all 0.5s ease;
    border-radius:50%;
    outline:2px solid #eb3337;
    outline-offset:3px;
}
.choose-country-main-block-two .choose-country-heading {
  margin-bottom: 9px;
}
.choose-country-main-block-two .choose-country-heading a {
  color: #232; 
}
.choose-country-main-block-two .choose-country-dtl p {
  color: #777;
}
.choose-country-main-block-two .choose-country-dtl i {
  padding-left: 10px;
}
@media (max-width: 992px) { 
  .choose-country-main-block-two .choose-country-block {
    text-align: center;
    margin-bottom: 20px;
  }
  .choose-country-main-block-two .choose-country-dtl a {
    margin-bottom: 20px;
  }
}

/* ================================= */
    /*===== Service Details Page  =====*/
/* ================================= */
.service-details-main-block {
  padding: 120px 0;
}
.service-img {
  margin-bottom: 37px;
}
.heading-resources {
  font-size: 22px;
}
.service-details-contant {
  padding: 40px 30px;
}
.service-details-contant i {
  color: #eb3337;
}
.service-benefits p {
  margin-bottom: 43px;
}
.service-benefits .second-accordion {
  margin-bottom: 80px;
}
.service-benefits .second-accordion .card-header {
  padding: 0;
  background: transparent;
  border-bottom: 0;
}
.service-benefits .second-accordion .card-header button.btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: #232323;
  font-size: 17px;
  font-weight: 500;
  padding-left: 45px;
  position: relative;
  margin-bottom: 12px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-benefits .second-accordion .card-header button.btn:hover {
  color: #232323;
}
.service-benefits .second-accordion .card-header button.btn[aria-expanded="true"] {
  margin-bottom: 10px;
}
.service-benefits .second-accordion .card {
  border: 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 18px;
  margin-top: 10px;
  margin-left: -10px;
}
.service-benefits .second-accordion .card-body {
  padding: 0;
  padding-left: 50px;
  padding-bottom: 20px;
}
.service-benefits .second-accordion .card-header button.btn[aria-expanded="false"]:before {
  position: absolute;
  content: "\+";  
  left: 0;
  color: #777;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 28px;
  padding-left: -2px;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 500;
}
.service-benefits .second-accordion .card-header button.btn[aria-expanded="true"]:before {
  content: "\-";  
  left: 0;
  position: absolute;
  color:  #777;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  width: 30px;
  text-align: center;
  font-size: 30px;
  height: 30px;
  padding-left: 2px;
  line-height: 30px;
  font-weight: 500;
}
.service-details-list {
  margin-bottom: 45px;
}
.service-details-list .active  {
  background-color: #eb3337;
  font-weight: 500;
}
.service-details-list .active  a {
  color: #FFF;
}
.service-details-list ul li {
  border: 1px solid #EAEAEA;
  border-bottom: none;
  padding: 20px 30px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-details-list ul li:last-child {
  border-bottom: 1px solid #EAEAEA;
}
.service-details-list ul li:hover { 
  color: #FFF;
  background-color: #eb3337;
} 
.service-details-list ul li a {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-details-list ul li:hover a { 
  color: #FFF;
}
.service-resources {
  margin-bottom: 45px;
}
.resources-type ul li {
  border: 1px solid #EDEDED;
  margin-bottom: 12px;  
}
.resources-type ul li i {
  color: #eb3337;
  margin-right: 10px;
  border-right: 1px solid #EDEDED;
  padding: 0 18px;
  line-height: 3.5;
}
.resources-type ul li a {
  color: #777;
  font-size: 15px;
}
.country-contact-two .service-contact-dtl {
  padding: 40px 35px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
.service-contact-dtl {
  padding: 40px 70px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
.service-contact-dtl ul {
  margin-bottom: 29px;
}
.service-contact-dtl a {
  font-weight: 600;
}
.service-contact-dtl .btn-primary {
  padding: 15px 23px;
}
.service-contact {
  margin-bottom: 80px;
}
.service-contact-img {
  background-image: url('../images/globe.webp')!important;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.service-contact-img .overlay-bg {
  opacity: 0.90;
  background-color: #121B51;
}
.service-benefits img {
  margin-bottom: 40px;
}
.service-strategy-heading {
  margin-bottom: 40px;
}
.service-strategy .nav-tabs {
  border-bottom: 1px solid #EAEAEA;
}
.service-strategy .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #232323;
  font-size: 17px;
  padding: 21px 33px;
  border-color: #EAEAEA;
}
.service-strategy .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
  color: #232323;
  font-size: 17px;
  padding: 21px 33px;
}
.service-strategy .nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.service-strategy .tab-pane {
  font-size: 18px;
}
.service-strategy .tab-content {
  border: 1px solid #EAEAEA;
  border-top: none;
  padding: 35px 30px;
}
@media (max-width: 992px) {
  .service-contact-dtl {
    padding: 40px 240px;
    text-align: center;
  }
  .service-details-list ul li {
    text-align: center;
  }
 .service-details-contant i {
    display: none;
  } 
}
@media (max-width: 767px) {
  .service-contact-dtl {
    padding: 40px 150px;
    text-align: center;
  }
  .country-contact-two .service-contact-dtl {
    padding: 40px 110px; 
  }
}
@media (max-width: 576px) {
  .service-contact-dtl {
    padding: 40px 80px;
    text-align: center;
  }
  .country-contact-two .service-contact-dtl {
    padding: 33px 49px; 
  }
  .service-benefits .second-accordion .card-header button.btn {
    white-space: initial;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .service-contact-dtl {
    padding: 35px 15px;    
  }
}

/* ================================= */
    /*===== Country List Page =====*/
/* ================================= */
.country-main-block-two {
  padding: 118px 0 120px;
  background-color: #F6F6F6;
}
.choose-country-two {
  background-color: #FFF;
  padding: 35px 23px;
  margin-bottom: 30px;
}
.choose-country-icon-two {
  margin-bottom: 20px;
}
.choose-country-two:last-child {
  margin-bottom: 79px;
}
.choose-country-two {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.choose-country-two:hover {
  box-shadow: 0px 6px 20px 0 rgba(0, 0, 0, 0.05); 
}
.choose-country-dtl-two p {
  margin-bottom: 20px;
}
.choose-country-dtl-two a {
  color: #232;
}
.choose-country-dtl-two a i {
  color: #eb3337;
  padding-left: 10px; 
}
.country-form-heading {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.country-form {
  padding: 37px 25px;
  background-color: #f8f9ff;
  margin-bottom: 50px;
}
.country-form .form-group {
  margin-bottom: 20px;
}
.country-main-block-two select.form-control:not([size]):not([multiple]) {
  height: 56px;
}
.country-form .form-control {
  padding: 14px 18px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.coaching-main-block-two select.form-control:not([size]):not([multiple])  {
  height: 64px;
}
.country-form span {
  color: #eb3337;
}
.country-form  label {
  color: #232323;
  font-family: 'Poppins', sans-serif;
}
.country-contact-two .service-contact-dtl i {
  margin-bottom: 30px;
  font-size: 30px;
  color: #eb3337;
}
.country-contact-two .service-contact-dtl ul li {
  font-size: 20px;
  margin-bottom: 5px;
}
.service-contact-dtl 
[class^="flaticon-"]:before, 
[class^="flaticon-"]:after  {
  font-size: 40px;
}
.country-contact-two .service-contact-dtl ul li a {
  color: #eb3337;
  border-bottom: 1px solid;
}
.country-form .request-button-two .btn-primary {
  padding: 16px 90px;
  width: 100%;
}
.country-form .request-button-two .btn-primary i {
  padding-left: 8px;
}
.request-button-two .btn-primary:hover {
  background: #121B51;
  color: #FFF;
}

/* ================================= */
    /*===== Country Details Page =====*/
/* ================================= */
.country-details-block {
  background-color: #f8f9ff;
}
.country-details-block {
  margin-bottom: 40px;
}
.country-details {
  padding: 33px 40px;
}
.country-details-heading {
  font-size: 20px;
  color: #232;
  padding: 33px 0 0;
}
.country-details p {
  color: #777;
}
.italic {
  font-style: italic;
}
.country-details i {
  color: #eb3337;
  font-size: 15px;
  padding-right: 20px;
}
.country-details-block hr {
  margin-bottom: 23px;
}
.details-button-two .btn-primary {
  margin-bottom: 28px;
}
.details-button-two .btn-primary i {
 padding: 5px;
}
.details-button-two .btn-primary:hover {
  background: #050D3C;
  color: #FFF;
}
.country-applications ul li {
  padding: 5px 30px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .country-applications ul li i {
    display: none;
  }
}

/* ================================= */
    /*===== Contact Us Page =====*/
/* ================================= */
.contact-us-main-block {
  padding: 118px 0 50px;
  background-color: #F6F6F6;
}
.contact-us-heading {
  color: #232;
  font-size: 26px;
  margin-bottom: 34px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.contact-us-heading-two {
  text-transform: none;
}
.contact-us-block {
  margin-bottom: 60px;
}
.appointment-form .form-group-two {
  margin-bottom: 15px;
}
.appointment-form .form-group .form-control {
  padding: 12px 20px;
  margin-bottom: 17px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.contact-form-btn i {
  padding-left: 8px;
}
.contact-form-btn .btn-primary:hover {
  background: #050D3C;
  color: #FFF;
}
.contact-us-dtl .contact-dtl-heading {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 36px;
}
.contact-us-dtl p {
  font-size: 18px;
  margin-bottom: 35px;
}
.contact-us-main-block .contact-block i {
  font-size: 20px;
  color: #777; 
  padding-right: 20px;
}
.contact-us-two [class^="flaticon-"]:before, 
[class*=" flaticon-"]:before, 
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 20px;
  color: #777; 
}
.contact-us-main-block .contact-block ul li i {
  display: inline-block;
  float: left;
}
.contact-us-main-block .contact-block ul li {
  color: #777;
  font-size: 16px;
  margin-bottom: 15px;
}
.contact-us-main-block .contact-block ul li a {
  color: #777;
  display: table;
}

/* ================================= 
    /*===== Map =====*/
/* ================================= */
.map-location {
  width: 100%;
  height: 440px;
}
.map-location iframe{
  width:100%;
}

/* ================================= */
    /*===== Contact Us Page Two =====*/
/* ================================= */
.contact-two-heading {
  margin-bottom: 27px;
}
.brd-rgt {
  border-right: 1px solid #DDD;
}
.contact-us-two ul {
  margin-bottom: 25px;
}
.contact-us-two-main-block {
  background-color: #F6F6F6;
  padding: 22px 0 0;
}
.contact-us-two-form .form-group-two {
  margin-bottom: 14px;
}
.contact-us-two-main-block .contact-form-btn {
  margin-bottom: 120px;
}
#menu-button{
  text-indent: -999px;
}
@media (max-width: 767px) {
  .brd-rgt {
    border-right: none;
  }
  .contact-us-two {
    margin-bottom: 30px;
  }
 
}
@media (max-width: 768px) {
  #nav-bar{
    position: relative;
  }
   #cssmenu {
    position: static!important;
  }
  #cssmenu ul{
    position: absolute;
    top: 100%;
    z-index: 999;
    right: 0;
    left: 0;
    background-color: #fff;
  }
  /* .navigation-btn{
    display: none;
  } */
}

    .education-section {
    padding: 300px 0px 150px 0px;
    overflow: hidden;
}
.education-section:before {
    position: absolute;
    content: '';
    background:#050d3c;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.95;
}
.education-section .bg-layer-2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center;
    animation: slide 60s linear infinite;
    -webkit-animation: slide 60s linear infinite;
}
.education-section .image-layer {
    position: absolute;
    right: 200px;
    bottom: 0px;
    margin-bottom:0;
}
.auto-container {
    position: static;
    max-width: 1450px;
    padding: 0px 15px;
    margin: 0 auto;
}
.education-section .content-box {
    max-width: 500px;
}
.content_block_three .content-box h2 {
    display: block;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 19px;
}
.content_block_three .content-box p {
    display: block;
    color: #fff;
    margin-bottom: 40px;
}
.content_block_three .content-box .country-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.content_block_three .content-box .country-list .flag {
    position: relative;
    display: inline-block;
    border: 3px solid #FFFFFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
    border-radius: 50%;
    margin-bottom: 10px;
}
.content_block_three .content-box .country-list span {
    position: relative;
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}
.education-section .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1600px;
    height: 238px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.education-section .pattern-layer .pattern-2 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 1600px;
    height: 238px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.education-section .shape .shape-1 {
    position: absolute;
    top: 124px;
    right: 118px;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 4s infinite linear;
    animation: zoom-fade 4s infinite linear;
}
.education-section .shape .shape-2 {
    position: absolute;
    bottom: 0px;
    right: 580px;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 6s infinite linear;
    animation: zoom-fade 6s infinite linear;
}

/*visa page css*/
 .visa-detail-cont  .sidebar {
      background: #121B51;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
    }
  .visa-detail-cont   .sidebar h6 {
      border-bottom: 1px solid #fff;
      padding-bottom: 8px;
      margin-bottom: 10px;
      font-size: 14px;
      text-transform: uppercase;
    }
   .visa-detail-cont  .content img {
      border-radius: 8px;
      margin: 20px 0;
      width: 100%;
      height: auto;
    }
  .visa-detail-cont   .content h3 {
      color: #0c2c5c;
      font-weight: 700;
    }
    .visa-detail-cont .list-icon {
      list-style: none;
      padding: 0;
    }
   .visa-detail-cont  .list-icon li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      color:#fff;
    }
  .visa-detail-cont  .list-icon li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: #0c2c5c;
      font-weight: bold;
    }
    .visa-detail-cont .sidebar-cont{
        background: rgba(3, 43, 102, 0.1);
    }
 .visa-detail-cont .sidebar {
  background: #0c2c5c;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}
 .visa-detail-cont .sidebar .nav-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 18px;
  transition: 0.2s;
  display:flex;
  justify-content:space-between;
}
 .visa-detail-cont .sidebar .nav-link:hover {
  color: #ffc107;
  text-decoration: none;
}
  .visa-detail-cont .sidebar .nav-link.active {
  color: #ffc107;
}
.travel-card {
  height: 260px;
}
.travel-card img {
  object-fit: cover;
  height: 100%;
}
.travel-card h3{
        font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}
.travel-card li{
    display: block;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 5px;
}
.travel-card .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 250px;
    padding: 40px 30px 50px 30px;
    background: rgba(3, 43, 102, 0.9);
}

  .visa-detail-cont .sidebar i {
    color:#fff;
    margin-right:5px;
}

/*consultation visa popup form css*/
.modal-section{
    display:none;
    position: fixed;
    top: 50%;
    width:calc(100% - 40px);
    max-width:650px;
    z-index: 999;
    transform: translate(-50%,-50%);
    left: 50%;
    margin:0px auto;
    box-shadow: 0px 0px 30px 0px rgba(18, 27, 81, 0.1);
}
.modal-section .visa-consultation-block{
    background-color:transparent;
    box-shadow:none;
}
.modal-section .visa-consultation-form{
    padding:0px;
}
.modal-section .section-heading{
    font-size:1.5rem;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display:none;
}
.close-btn{
    display:flex;
    justify-content:flex-end;
}
.close-btn button{
    background-color: #21366d;
    border: 0px;
    color: #fff;
    font-size: 1.2rem;
    width: 35px;
    height: 30px;
}
.close-btn button:hover{
    transform:scale(0.95);
}
 .ic-hero-section{
        min-height:500px;
        background-color: rgb(18, 27, 81);
    }
    .ic-hero-section p,.ic-hero-section .section-heading{
        color:#fff;
        margin-bottom: 10px;
    }
    .ic-hero-section .section-heading:after{
        width:150px;
        margin-left:0px;
    }
  .ic-breadcrumb-container {
    padding: 1rem 0;
  }

  .ic-breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 0.875rem; /* 14px */
    color: #fff; /* Neutral gray */
  }

  .ic-breadcrumb-item {
    display: flex;
    align-items: center;
  }

  .ic-breadcrumb-link {
    color:#fff;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
  }

  .ic-breadcrumb-link:hover {
    color: #eb3337; 
    text-decoration: underline;
  }

  .home-icon {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.5rem;
  }

  .separator {
    margin: 0 0.75rem;
    color: #d1d5db;
    font-weight: 300;
  }

  .ic-breadcrumb-item.active {
    color: #eb3337;
    font-weight: 500;
  }
  .edu-features {
  margin-top:30px;
  display: flex;
  flex-direction:column;
  gap: 30px;
}

.edu-card {
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  border-left: 6px solid #6366f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, #eef0ff 0%, #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
   box-shadow: 
    0 12px 30px rgba(24, 24, 94, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.edu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.edu-icon {
  min-width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1, #18185e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}
.edu-icon i{
    color:#fff;
    font-size:24px;
    padding:0px;
}

.edu-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18185e;
  margin-bottom: 10px;
}

.edu-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}


/*courses card css */
   .bento-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* Modern Glass Card */
    .ic-service-card {
        background: var(--bg-glass);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 24px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-bottom: 4px solid var(--brand-red);
        cursor: pointer;
    }

    /* Geometric Clip-Path Accent */
    .ic-service-card::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -10%;
        width: 120px;
        height: 120px;
        background: var(--brand-red);
        opacity: 0.1;
        clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        transition: 0.5s ease;
    }

    .ic-service-card:hover {
        transform: translateY(-10px);
        background: #ffffff;
        box-shadow: 0 20px 40px rgba(18, 27, 81, 0.1);
        border-color: var(--brand-red);
    }

    .ic-service-card:hover::before {
        transform: scale(2) rotate(45deg);
        opacity: 0.05;
    }

    /* Icon Styling */
    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--brand-blue);
        color: white;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        transition: 0.3s;
    }

    .ic-service-card:hover .icon-box {
        background: var(--brand-red);
        transform: rotate(-10deg);
    }

    /* Typography */
    .ic-service-title {
        color: var(--brand-blue);
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .ic-service-text {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }
      /* Step Indicator */
    .step-number {
        font-size: 4rem;
        font-weight: 900;
        color: rgba(18, 27, 81, 0.09);
        position: absolute;
        top: -10px;
        right: 10px;
    }
 /* Visa Checklist */
    .visa-card {
        background: var(--brand-blue);
        color: white;
        border-radius: 30px;
        padding: 40px;
    }
      .visa-card h3{
          color:#fff;
      }

    .check-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .check-item i {
        color: var(--brand-red);
        margin-right: 15px;
        margin-top: 5px;
    }
.gap{
    gap:20px;
}
.ic-step-card {
    border-left: 1px solid #ddd;
}
    .steps-container {
        overflow: hidden;
    }

    .step-wrapper {
        position: relative;
        padding: 20px;
        border-radius: 20px;
        background: #fff;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid #eee;
        height: 100%;
        z-index: 1;
    }

    /* Large Background Number */
    .step-bg-number {
        position: absolute;
        top: -10px;
        right: 20px;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(0, 123, 255, 0.05);
        z-index: -1;
        line-height: 1;
    }

    /* Icon with Clip-Path Hexagon */
    .step-icon-hex {
        width: 60px;
        height: 60px;
        background: var(--brand-red);
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-bottom: 25px;
        font-weight: bold;
    }

    .step-wrapper:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: var(--brand-red);
    }

    .step-wrapper h4 {
        font-weight: 700;
        color: #2d3436;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .step-wrapper p {
        color: #636e72;
        font-size: 0.95rem;
        line-height: 1.6;
    }
.steps-row{
    row-gap:30px;
}
    /* Connector line for Desktop */
    @media (min-width: 992px) {
        .steps-row {
            position: relative;
        }
    }
@media (min-width: 768px) {

    /* Reset all cards first */
    .ic-step-card {
        border-left: none;
    }
    .ic-step-card + .ic-step-card {
        border-left: 1px solid #ddd;
    }
        .ic-step-card.no-bd{
    border-left:0px;
}
}
@media only screen and (max-width: 1200px) {
.education-section .pattern-layer .pattern-1, .education-section .pattern-layer .pattern-2 {
    display: none;
}
.education-section .image-layer {
    right: 0px;
}
}
@media only screen and (max-width: 991px) {
    .education-section .shape, .education-section .image-layer {
        display: none;
    }
    .travel-card h3{
        font-size:20px;
    }
    .travel-card{
        height:100%;
    }
    .travel-card .overlay{
        position:static!important;
        width:100%;
        background-color:#121B51;
    }
}
@media (max-width: 576px) {
  .page-banner-main-block .page-banner-heading {
    font-size: 34px;
  }
 .modal-section  .visa-consultation-form .form-control ,.modal-section  .visa-consultation-form select.form-control:not([size]):not([multiple]){
    height: 40px;
}
.modal-section  .request-button .btn-primary{
   margin-top:15px; 
}
.country-details{
    padding:0px;
    background-color:transparent;
}
.country-form{
    padding:0px;
}
  .edu-features .edu-card{
        margin-top:40px;
        flex-direction: column;
        align-items:center;
        border-left: 0px;
        border-top: 6px solid #6366f1;
}
   .edu-features .edu-icon {
    outline: 4px solid #fff;
    width: 80px;
    height: 80px;
    font-size:30px;
    margin-bottom:20px;
    margin-top: -70px;
    border-radius:50%;
}
.edu-features .edu-content h3,.edu-features .edu-content p{
        text-align:center;
    }
.ic-hero-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
}
 @media screen and (min-width:768px){
        .edu-features.edu-features-v2{
        flex-direction:row;
        flex-wrap:wrap;
    }
   .edu-features.edu-features-v2 .edu-card{
       margin-top:40px;
        width:calc(50% - 15px);
        flex-direction: column;
        align-items:center;
        border-left: 0px;
        border-top: 6px solid #6366f1;
    }
   .edu-features.edu-features-v2 .edu-icon {
    outline: 4px solid #fff;
    width: 80px;
    height: 80px;
    margin-bottom:20px;
    margin-top: -70px;
    border-radius:50%;
}
    .edu-features.edu-features-v2 .edu-content h3,.edu-features.edu-features-v2 .edu-content p{
        text-align:center;
    }
    }
 .scholarship-list {
        list-style: none;
        padding: 0;
    }

 .scholarship-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        color: #444;
}

.scholarship-list li i {
        margin-right: 12px;
        color: var(--brand-red);
        font-size: 0.8rem;
}
    .btn-link {
    white-space: normal;      
    word-break: break-word;   
    text-align: left;         
}

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            padding: 10px;
        }

        .destination-card {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
           border: 1px solid rgb(47 47 47 / 24%);
            border-radius: 20px;
            padding: 30px 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 15px 40px rgba(18, 27, 81, 0.15);
        }

        .image-container {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-name {
            color: var(--brand-blue);
            font-weight: 700;
            font-size: 1.25rem;
            margin-top: 10px;
        }
            .scholarship-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .section-title {
        color: var(--brand-blue);
        margin-bottom: 3rem;
        position: relative;
    }

    .section-title span {
        color: var(--brand-red);
    }

    .glass-card {
        background: var(--bg-glass);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        z-index: 1;
    }

    .glass-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(18, 27, 81, 0.15);
    }

   .glass-card  .card-icon {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .undergrad-icon { color: var(--brand-red); }
    .postgrad-icon { color: var(--brand-blue); }

   

    .badge-category {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 0.75rem;
        margin-bottom: 10px;
        display: block;
    }
  .home-main-block{
        min-height:420px;
    }

.ic-success-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-heading span {
  color: var(--brand-red);
}

/* Grid Layout */

.sucess-grid.owl-carousel {
    display: block !important;
    width: 100% !important;
}
.owl-item {
    float: left; 
}
/* The Card */
.ic-success-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--brand-blue);
}

/* Clip Path Image Effect */
.ic-success-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ic-success-card:hover img {
  transform: scale(1.05);
}

/* Play Button Overlay */
/*.ic-success-card::before {*/
/*  content: '▶';*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  background: var(--brand-red);*/
/*  color: white;*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 20px;*/
/*  z-index: 2;*/
/*  box-shadow: 0 4px 15px rgba(235, 51, 55, 0.4);*/
/*  pointer-events: none;*/
/*}*/

/* "View More" Button Styling */
.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.btn-view-more {
  padding: 15px 40px;
  background: var(--brand-blue);
  color: var(--white);
  border: 2px solid var(--brand-blue);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-view-more:hover {
  background: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.ic-success-card {
    position: relative;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(18, 27, 81, 0.1); /* Soft Navy shadow */
    transition: transform 0.3s ease;
}

/* The Glass Badge Overlay */
.student-info-badge {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(18, 27, 81, 0.1);
    text-align: center;
}

.student-name {
    color: var(--brand-blue);
    font-weight: 800;
    margin: 0;
    font-size: 1.1rem;
}

.visa-type {
    color: var(--brand-red); 
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}
.ic-video-testimonial {
  padding: 80px 0;
  background-color: var(--white);
}
.ic-video-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

video::-webkit-media-controls-panel {
    z-index: 6;
}

.ic-video-card{
    overflow:hidden;
    border-radius: 12px;
    display:flex;
    justify-content:center;
    position:relative;
}
.ic-video-card video{
    /*height:476px;*/
    aspect-ratio:9/16;
    width:100%;
    display:block;
    object-fit:cover;
}

/* Play Button Overlay */
.ic-video-card .playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9;
  box-shadow: 0 4px 15px rgba(235, 51, 55, 0.4);
 animation: pulseShadow 1.5s infinite;
}

/* Pulse animation */
@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(225, 6, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
  }
}

.playBtn:hover {
  animation-play-state: paused;
}
@media (min-width: 767px) {
  .ic-video-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:1023px){
 .ic-video-card:nth-child(4) {
    display: none;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .ic-video-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
 @media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
    .btn-link {
        font-size: 14px;      
        padding: 0.5rem 1rem; 
    }
    .education-section{
        padding:100px 0;
    }
   
}
@media (max-width:475px){
    .destinations-grid {
         grid-template-columns: 1fr;
    }
    .ic-video-card video {
        height:500px;
    }
}
@media screen and (min-width: 767px) {
    .home-main-block {
        min-height: 500px;
    }
}
