

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
 /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #990000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #990000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #990000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #990000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  /* background: linear-gradient(45deg, rgba(124, 185, 232, 0.1), rgba(0, 37, 97, 0.1)); */
  font-family: var(--default-font);
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--default-color), transparent 25%); */
  text-decoration: none;
}
 h1.mb-4.text-light {
        color: #fff;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

h2,
h3,
h4,
h5,
h6 {
  color: var(--accent-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 5px 0; */
  transition: all 0.5s;
  z-index: 997;
  width:100%;
}

.header .header-container {
  background: var(--surface-color);
  /* border-radius: 50px; */
  padding: 5px 25px;
  
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

.scrolled .header .header-container {
  width:100%;
  background: color-mix(in srgb, var(--surface-color), transparent 0%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
  /* position: relative;
  top: 10%;
  left: 15%; */
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.btn-getstarted
{
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  /* margin: 0 0 0 30px; */
  border-radius: 50px;
  transition: 0.3s;
}
.btn-getstarted:hover{
  color: var(--contrast-color);
  background: #274472;

}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #274472;
}
@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
    margin: -10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: -10px;
    /*padding: 10px 5px 10px 15px;*/
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 768px) {

  .header .logo img {
    max-height: 60px; /* Scale down logo size for small screens */
    height: auto;
  }
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #333131;
  /* background: linear-gradient(260deg, #eb1b2b, #002561); */
  background-color: fff;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--heading-font);
  color:#333131;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #333131;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  /* background: linear-gradient(90deg, #002561, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: #333131;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  color: #333131;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #333131;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;

}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color:#333131;
}
.footer-bottom {
    background-color:#990000;
  color: #fff;
  padding: 5px;
 
}
/* .footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: #002561;
  width: 100%;
} */

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #990000;
  /* background: linear-gradient(-360deg, #002561, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  

}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  /* background: var(--accent-color); */
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 150px;
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%); */
  /* background-image: url('../img/images.jpg'); */
  background: rgba(128, 128, 128, 0.5); /* Grey shade with 50% opacity */
  pointer-events: none; /* Makes the overlay non-interactive */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg.jpg');
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color:#fff;
}

.hero .hero-content h1 .accent-text {
  /* color: var(--accent-color); */
 background: #eb1b2b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  /* border: 1px solid #990000; */
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
 
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero .btn-custom {
 background-color: #274472;
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero .btn-custom:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  
}
.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  /* background-color: var(--surface-color); */
  background: linear-gradient(105deg, #274472, #990000);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: color-mix(in srgb, var( --accent-color), transparent 0%); */
  background-color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* .hero .stat-item:hover .stat-icon {
  background-color: var(--heading-color);
} */
/* 
.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
} */

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 2.0rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  /* font-size: 1rem; */
  color: #fff;
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  /* background-color: #002561;
  background: linear-gradient(145deg, #002561, #f9a500); */
 

}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
  background: linear-gradient(105deg, #274472, #990000);
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 10px 0;

}

.features-cards .feature-box p {
  font-size: 20px;
  margin-bottom: 0;
}
.features-cards .feature-box.white {
  background-color: #fff;
}
.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  height: auto;
  width: auto; /* Ensures the image scales proportionally */
  max-width: 25vh; /* Prevents the image from overflowing the container */
  max-height: 150px; /* Adjust this value to control the height */
  display: block; /* Ensures no extra spacing caused by inline elements */
  margin: 0 auto; /* Centers the image */
  /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/* .faq{
   background: linear-gradient(45deg, rgba(124, 185, 232, 0.1), #002561);
} */
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
  /* background: linear-gradient(300deg, #002561, #f9a500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */

}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.accreditation-section {
  padding: 40px 20px;
  background-color: #f8f9fa; /* Light background color */
  border-radius: 8px;
  text-align: center;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* text-align: left; */
  /* box-shadow: 5px 5px 15px rgba(0,0,0,0.5), -5px -5px 10px rgba(255,255,255,0.3); */

}

.accreditation-item img {
  width: 80px;
  height: 80px;
}

.accreditation-item p {
  margin: 0;
  font-size: 0.9rem;
}

.accreditation-item span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .accreditation-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .accreditation-item img {
      margin-bottom: 10px;
  }
}
.cta-section {
      background-color: #990000; /* Navy blue background */
      color: white;
      border-radius: 8px;
      overflow: hidden;
      height: 300px;
  }

  /* .cta-text {
      padding: 40px 20px;
  } */

  .cta-text {
    padding: 20px 40px; /* Adjust left and right spacing */
}

.cta-text h2 {
    margin-top: 50px; /* Adjust as needed */
    text-align: center; /* Center text */
}

.custom-btn {
    margin-top: 10px; /* Space above the button */
}


  .cta-text .btn {
      background-color: var(--heading-color); /* Yellow button */
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 50px;
      transition: all 0.3s ease;
  }

  .cta-text .btn:hover {
    color: #fff;
    background: color-mix(in srgb, var(--heading-color), transparent 15%);
    /* border: 1px solid #fff; */
  }

  .cta-image img {
    width: 100vw;
    margin:0;
    object-fit: cover; /* Ensures the image fully covers the area */
    border-radius: 0; /* Removes any unwanted rounding */
}


  @media (max-width: 768px) {
      .cta-text {
          text-align: center;
      }
  }

.swiper-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
  flex-wrap: nowrap; 
}
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  /* background: linear-gradient(45deg, rgba(124, 185, 232, 0.1), #002561); */
}

.testimonial {
  position: relative;
  padding: 20px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(105deg, #274472, #990000);
  padding: 2px; /* Controls the thickness of the border */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0); /* Mask to show the gradient border only */
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}




.testimonial p {
font-size: 16px;
font-weight: 500;
color: #212529;
margin-top: 10px;
}

.testimonial-img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 15px;
object-fit: cover;
}

/* Adjusting spacing and slide behavior */
@media (max-width: 768px) {
.swiper-container {
padding: 10px 0;
}
}

.student-card {
  background-color: #ffffff;
  color: white;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.student-card img {
  max-width: 50%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.student-card h5, .student-card p {
  margin: 0;
  color:black;
}

.card-blue { background-color: #deedfd; }
.card-orange { background-color: #fdeded; }
.card-darkblue { background-color: #fdeded; }
.card-purple { background-color: #deedfd; }

.placements-overview {
  background: linear-gradient(105deg, #274472, #990000);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.placements-overview h2 {
  font-size: 2rem;
  color: #fff;
}

.placements-overview p {
  margin-bottom: 1rem;
  color: #fff;
 
}

.placements-overview .stats {
  margin: 1rem 0;
  text-align: center;
  color: #fff;
}

.placements-overview .stats h6 {
  font-size: 1.5rem;
  text-align: center;
  color:#fff;
}

.placements-overview .stats p {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
}

.custom-btn{
  background-color: #002561;
  color: #fff;
  padding: 15px;
  align-items: center;
  border-radius:30px;
  font-size: 14px;
  padding: 8px 20px; 
  margin:8px;
}
.custom-btn:hover{
  color: #fff;
  background: #002561;
  /* border: 1px solid #990000; */
}
.placements__slider {
  width: 100%;
  padding: 10px 0;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Testimonial block styling */
.placement__testimonial__blocks {
  text-align: center;
  padding: 10px;
  /* border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  width: 550px;
  position: relative;
  overflow: hidden;
}


.placements__picture {
  margin: 10px 0;
}

.placements__picture img {
  width: 10px; /* Replace with desired width */
  height: auto;
}




.placements__content .salary {
  font-size: 16px;
  font-weight: bold;
background: #fff;
}




.placements__top {
  text-align: center;
}
.placements__top .placements__headingText h3 {
  /* background: linear-gradient(360deg, #002561, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color:#fff;
  font-weight: 600;
  font-size: 30px;
}
/* .placement__subheading {
  font-size: 20px;
} */
.placements__bottom {
  margin-top: 50px;
  padding: 0 40px;
}
.placements__content {
  text-align: center;
  margin-top: 15px;
}
.placements__content h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 0px !important;
  color:#fff;
}
.placements__content p {
  /* background: linear-gradient(360deg, #002561, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color:#fff;
  font-weight: 400;
  font-size: 28px;
}
.placements.sec-padding {
  padding: 50px 0;
}
.experience-beyond-stats.testimonial-stats {
  margin-right: 40px;
}
.testimonial-stats .item-block {
  text-align: center;
}
.stat__number__blocks:not(:last-child) {
  border-bottom: 2px dashed #fff;
}
.border-left {
  border-left: 2px dashed #fff;
}
.testimonial-stats .number {
  color:#fff;
  font-size:35px;
  font-weight: 600;
  text-align: left;
}
.testimonial-stats .text {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: start;
  color:#fff;
}
.stat-block {
  padding: 30px 15px 20px 10px;
}
.experience-beyond-stats {
  justify-content: start;
}
@media screen and (max-width: 600px) {
  .placements__top .placements__headingText h3 {
    font-size: 20px;
    line-height: 1.57em;
  }
  .placement__subheading {
    font-size: 16px;
  }
  .placements__bottom {
    margin-top: 0px;
    padding: 0 20px;
  }}
  @media (max-width: 768px) {
    .experience-beyond-stats.testimonial-stats{
      margin-right: 0;
    }}
    @media screen and (min-width: 575px) and (max-width: 600px) {
.experience-beyond-stats {
        margin-top: 1rem;
        margin-bottom: 3rem;
      }
      .stat-block {
        padding: 18px 5px;
      }
    }
      @media screen and (min-width: 601px) and (max-width: 767.5px) {
        .experience-beyond-stats {
          margin-top: 1rem;
          margin-bottom: 3.5rem;
        }}
        @media screen and (min-width: 1800px) {
          .placements__top .placements__headingText h3 {
            font-size: 20px;
            line-height: 1.57em;
          }
         .placement__subheading {
            font-size: 16px;
          }
          .placements__bottom {
            margin-top: 0px;
            padding: 0 20px;
          }
          .testimonial-stats .number {
            font-size: 28px;
            text-align: center;
          }
          .stat-block {
            padding: 18px 5px;
          }
          .testimonial-stats .text {
            font-size: 16px;
            text-align: center;
          }
          .experience-beyond-stats {
            margin-top: 1rem;
            margin-bottom: 3rem;
          }
          .rise__achieve__excel__section.sec-padding {
            padding: 20px 0;
          }}
        @media screen and (min-width: 1024px) and (max-width: 1199.98px) {
          .stat-block {
            padding: 15px 10px;
          }
          .testimonial-stats .number {
            font-size: 30px;
          }
          .testimonial-stats .text {
            text-align: left;
            font-size: 19px;
            line-height: 1.3;
          }
          .top__recruiters__top__section .top__recruiters__heading h3 {
            
            font-size: 28px;
          }
          .top__recruiters__heading p {
            font-size: 17px;
            line-height: 1.9rem;
          }
          .program__offered__section__headingText h3 {
            
            font-size: 28px;
          }}
/* custom css */
.pl-pr-70 {
  padding: 0 70px 0 70px;
}
 .pl-pr-30 {
  padding: 0 30px 0 30px;
}
 .pl-pr-50 {
  padding: 0 50px 0 50px;
}
 .sec-padding {
  padding: 60px 0;
}

 /* .top__recruiters__top__section .top__recruiters__heading h3 {
  font-size: 30px;
  color: #a00534;
  font-weight: 600;
  text-align: center;
} */
 .top__recruiters__heading p {
  text-align: center;
  font-size: 19px;
  line-height: 1.9rem;
  margin-top: 15px;
}
 .top__recruiters {
  background: url("../images/top-recruiters/top-recruiters-bg.webp") no-repeat
    center;
  background-size: cover;
  height: 565px;
}
 .slider .item__slider__block {
  display: block;
}
 .slider .item__slider__block img {
  display: block;
  width: 185px;
  margin: 0 auto;
}
 .offered__programs__list > li i {
    margin-top: 5px;
}
 .slider .item__slider__block {
  border-right: 1px dotted #2e2e2e;
}
 .item__slider__block {
  width: 100%;
  display: inline-block;
  padding: 2rem 0;
}
 .item__slider__block.bor-top {
  border-top: 0.5px dotted #2e2e2e;
}
/* Placement Stats Section */
 .placement-stats {
  background: url("../images/research-innovation/feature-bg.webp") no-repeat
    center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding: 45px 20px;
  color: #333;
  margin-bottom: -4px;
}
 .content {
  position: relative;
  z-index: 1;
}
 /* .section-title {
  font-size: 30px;
  color: #ffda47;
  margin-bottom: 10px;
  font-weight: 600;
  padding-top: 20px;
} */
 .stat-item {
  display: flex;
  align-items: flex-start;
  /* padding: 0 30px 0 0; */
  /* padding: 0; */
  justify-content: center;
}
 .stat-bodr-right {
  border-right: 1px dotted #ffffff;
}
 .stat-item .feature--icon {
  text-align: left;
  margin-left: 17px;
  margin-top: 15px;
}
 .stat-item:hover .icon {
  transform: rotate(360deg);
  transition: transform 1s ease;
}
 .section-subtitle {
  font-size: 19px;
  color: #555;
  margin-bottom: 40px;
}
 .feature__picture__outer__circle {
  transition: transform 1s ease-in-out;
}

  .why__choose__feature__block:hover
  .feature__picture__outer__circle {
  transform: rotate(360deg);
}
 .icon {
  background: #ffda47;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid #f7a600;
}
 .icon_block-2 {
  width: 90px;
  background-color: #ffffff;
  border: 5px solid #cacaca;
}
 .icon_block-4 {
  /* width: 127px; */
  background-color: #ffffff;
  border: 5px solid #cacaca;
}
 .stat-item .icon img {
  width: 40px;
  height: 45px;
}
 .stat-item h3 {
  font-size: 45px;
  color: #ffda47;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 2.3rem;
}
 .stat-item p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
/*  .custom-size {
  width: 50px !important;
  height: 45px !important;
} */
 .placement-stats-bottom {
  margin-top: 60px;
}
 .international__tie__ups {
  background: url('../images/international-tie-ups/international-tieups-bg.webp')
    no-repeat center;
  background-size: cover;
  height: 770px;
}
 .picture__desktop__view {
    padding: 95px 0 30px 0;
}
/* International Tie Ups section css */
 .international__tie__ups__heading h3 {
  color: #a00534;
  font-weight: 600;
  font-size: 30px;
  line-height: 2.7rem;
  position: relative;
  padding-bottom: 0;
  text-align: center;
}
 .international__tie__ups__para p {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 90px;
  padding: 0 80px;
  line-height: 1.8rem;
}
 .tie__up__image__icon {
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: -6px 10px 15px rgb(0 0 0 / 43%);
}
 .tie__up__image__icon.tieup__icon__1 {
  background-color: #2781dc;
  position: absolute;
  left: -35px;
  bottom: 87px;
}
 .tie__up__image__icon.tieup__icon__2 {
  background-color: #f7a600;
  position: absolute;
  top: -50px;
  left: 143px;
}
 .tie__up__image__icon.tieup__icon__3 {
  background-color: #002561 !important;
  position: absolute;
  top: -52px;
  right: 134px;
}
 .tie__up__image__icon.tieup__icon__4 {
  background-color: #2e2e2e !important;
  position: absolute;
  bottom: 87px;
  right: -40px;
}
 .tie__up__image__icon.tieup__icon__2::before {
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: 1;
  border-bottom: 30px solid #f7a600 !important;
  transform: rotate(153deg) !important;
  top: 86% !important;
  left: 50% !important;
}
 .tie__up__image__icon.tieup__icon__3::before {
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: 1;
  border-bottom: 30px solid #002561 !important;
  transform: rotate(198deg) !important;
  top: 89% !important;
  left: 10% !important;
}
 .tie__up__image__icon.tieup__icon__4::before {
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: 1;
  border-bottom: 30px solid #2e2e2e !important;
  transform: rotate(206deg) !important;
  top: 86% !important;
  left: 1% !important;
}
 .tie__up__image__inner {
  text-align: center;
  margin-top: -50px;
}
 .tie__up__image__inner img {
  position: absolute;
  top: 24%;
  left: 32%;
  width: 470px;
}
 .tie__up__image__inner h3 {
  display: inline-block;
  font-size: 26px;
  line-height: 2.2rem;
}
 .tie__up__image__icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
 .tie__up__image__icon {
  position: relative;
  border: 5px solid #fff;
}
 .tie__up__image__icon.tieup__icon__1::before {
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  z-index: 1;
}
 .tie__up__image__icon:first-child::before {
  content: "";
  border-bottom: 30px solid #2781dc;
  transform: rotate(130deg);
  top: 75%;
  left: 64%;
}
 .tie__up__image__outer {
  background: url("../images/international-tie-ups/tieup-outline.png") no-repeat
    center;
  background-size: 100%;
  width: 670px;
  height: 328px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
 .tie__up__image__text h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 2rem;
}
 .tie__up__image__text p {
  font-weight: 600;
}
 .tie-up-text-1 {
  position: absolute;
  left: -121px;
  bottom: 205px;
}
 .tie-up-text-1 h2 {
  color: #2781dc;
}
 .international__tie__ups {
  /* padding: 80px 0 0 0; */
  padding: 50px 0 0 0;
}
 .international__tieup__inner__block {
  /* padding: 100px 0 0 0; */
  padding: 0;
}
 .tie__up__image__text.tie-up-text-2 {
  position: absolute;
  top: -128px;
  left: 18%;
  transform: translateX(-50%);
}
 .tie__up__image__text.tie-up-text-2 h2 {
  color: #f7a600;
}
 .tie__up__image__text.tie-up-text-3 {
  position: absolute;
  top: -128px;
  left: 79%;
  transform: translateX(-50%);
}
 .tie__up__image__text.tie-up-text-3 h2 {
  color: #002561;
}
 .tie__up__image__text.tie-up-text-4 {
  position: absolute;
  bottom: 56%;
  right: -212px;
  transform: translateX(-50%);
}
 .tie__up__image__item {
  transition: all 0.3s ease-in-out;
}
 .tie__up__image__item:hover .tie__up__image__icon {
  background-color: #92278f !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
 .tie__up__image__item:hover .tie-up-text-1 {
  bottom: 220px;
}
 .tie__up__image__item:hover .tie-up-text-2 {
  top: -140px;
}
 .tie__up__image__item:hover .tie-up-text-3 {
  top: -135px;
}
 .tie__up__image__item:hover .tie-up-text-4 {
  bottom: 60%;
}
 .tie__up__image__text {
  transition: all 0.3s ease-in-out;
}
 .tie__up__image__item:hover .tie__up__image__icon::before {
  border-bottom: 30px solid #92278f;
}
 .tie__up__image__item:hover .tie__up__image__icon::before {
  border-bottom-color: #92278f !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
 .tie__up__image__item:hover .tie__up__image__text h2 {
  color: #92278f;
}
 /* .international__Mous {
  background: url("../images/international-tie-ups/interbational-mous-bg.webp")
    no-repeat center;
  background-size: cover;
  height: 825px;
} */
 .international__Mous__headingText {
  text-align: center;
}
 .international__Mous__headingText h3 {
  color: #002561;
  /* background: linear-gradient(45deg, #002561, #f9a500);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
  font-size: 30px;
  font-weight: 600;
}
 .international__Mous__para {
  color: #fff;
  margin-top: 5px;
  font-size: 19px;
}
 .international__mous__slider .mous__image__icon {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
}
 .international__Mous__bottom {
  margin-top: 3rem;
}
 .mous__image__icon img {
  /* background-color: rgba(255, 255, 255, 0.5); */
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(0px);
  border: 1px solid #ffffff99;
}
 .experience__beyond__headingText {
  text-align: center;
}
 .experience__beyond__headingText h3 {
  color: #002561;
  font-weight: 600;
  font-size: 30px;
}
 .experience__beyond__headingText p {
  font-size: 19px;
  font-weight: 400;
  margin-top: 7px;
}
 .experience__beyond__picture img {
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
}
 .experience__beyond__content {
  background-color: #ad274f;
  padding: 45px 30px;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  height: 100%;
}
 .exp__beyond__headingText h3 {
  position: relative;
  padding-bottom: 30px;
  color: #fff;
  font-size: 22px;
}
 .exp__beyond__headingText h3::after {
  content: "";
  position: absolute;
  background: url("../images/exp-beyond/exp-beyond-line.png") no-repeat center;
  background-size: contain;
  left: -8px;
  bottom: 0;
  width: 60%;
  height: 3px;
}
 .exp__beyond__paraText p {
  margin-top: 25px;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
 .experience__beyond__block {
  margin: 0 10px;
}
 .placement__pathways__content {
  text-align: center;
  margin-top: 15px;
}
 .placement__pathways__content h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 0px !important;
}
 .placement__pathways__content p {
  color: #002561;
  font-weight: 400;
  font-size: 28px;
}

 
 .why__choose__ct__headingText {
  text-align: center;
}
 .why__choose__ct__headingText h3 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
}
 .why__choose__ct__headingText p {
  font-size: 18px;
  font-weight: 400;
}
 .why__choose__ct__ {
  background: linear-gradient(105deg, #274472, #990000);
  background-size: cover;
  height: 100%;
}
 .why__choose__ct__bottom__section {
  margin-top: 4.5rem;
}
 .why__choose__ct__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
 .feature__icon {
  background-color: #a92846;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #002561;
  z-index: 9;
}
 .feature__icon img {
  width: 50px;
  height: 50px;
}
 .feature__icon__content {
  margin-right: 34px;
}
 .feature__icon__content p {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
 .feature__icon__block {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
 .why__choose__CT__ .feature-block-1{
  position: relative;
  left: 0;
}
 .feature__icon__block:hover .feature__icon__content {
  margin-top: -15px;
  transition: all 0.5s ease-in-out;
}
 .feature__icon__block:hover img {
  transform: rotate(360deg);
  transition: all 0.7s ease-in-out;
}
 .feature-block-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25%;
}
 .feature-block-2 .feature__icon {
  background-color: #2e2e2e;
  border: 4px solid #000;
}
 .feature-block-3 {
  position: absolute;
  left: -7%;
  bottom: 0px;
}
 .feature-block-4 .feature__icon__content p {
  margin-left: 40px;
}
 .feature-block-5 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -38%;
  z-index: 9;
}
 .feature-block-5 .feature__icon__content p {
  margin-left: 37px;
}
 .feature-block-5 .feature__icon {
  background-color: #2e2e2e;
  border: 4px solid #000;
}
 .feature-block-6 {
  position: absolute;
  right: 2%;
  bottom: 0px;
}
 .feature-block-6 .feature__icon__content p {
  margin-left: 44px;
}
 .gallery__section {
  background-color: #f2f3f7;
}
 .gallery__section .gallery__section__top__headingText {
  text-align: center;
}
 .gallery__section .gallery__section__top__headingText h3 {
  color: #002561;
  font-weight: 600;
  font-size: 30px;
}
 .gallery__section .gallery__section__top__headingText p {
  color: #000;
  font-size: 18px;
}
 .why__choose__CT {
  background: linear-gradient(105deg, #274472, #990000);
  background-size: cover;
}
 .why__choose__CT .why__choose__ct__headingText {
  text-align: center;
}
 .why__choose__CT .why__choose__ct__headingText h3 {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
}
 .why__choose__ct__block {
  background: url("../img/info_line.png") no-repeat center;
  background-size: contain;
  height: 400px;
}
 .feature__block__picture {
  background-color: #fff;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 0 auto;
}
 .feature__picture__outer__circle {
  border: 1px solid #fff;
  text-align: center;
  width: 100%;
  padding: 15px;
  border-radius: 50%;
}
 .feature__picture__outer__circle.feature-block-1{
  width: 95%;
  margin-left: 7px;
}
 .outer-white-circle {
  border: 1px solid #ffda47 !important;
}
 .feature__box__2 .feature__block__picture {
  background-color: #ffda47; 
}
 .feature__box__4 .feature__block__picture {
  background-color: #ffda47;
}
 .feature__block__picture img {
  width: 80px;
  height: 80px;
}
 .why__choose__ct__block {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
 .feature__block__content p {
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
 .why__choose__ct__bottom {
  margin-top: 2.3rem;
}
 .top-margin {
  margin-top: 65px;
}
 .bottom-margin {
  margin-bottom: 75px;
  margin-left: 0px;
}
 .feature__box__3 {
  margin-left: 5px;
}
.gallery-section {
  background-color: #f8f9fa;
}
.gallery-title {
  color: #b61b44;
  font-weight: bold;
}
.gallery-subtitle {
  color: #6c757d;
  font-size: 1rem;
}
.gallery-item {
  position: relative;
}
.gallery-item img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.overlay-text {
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}


 

 .icon-wrapper,
.icon-content {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}
 .icon-wrapper img {
  width: 66px;
  height: auto;
  margin: 0 auto;
}
 .icon-content {
  position: relative;
  padding-top: 17px;
  margin-top: 15px;
  width: 70%;
}
 .icon-content p {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
}
 .coe-heading p {
  text-align: justify;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5rem;
  padding: 0 50px 0 0;
}
 .apply-btn {
  font-weight: bold;
  border-radius: 10px;
  border: 3px solid orange;
  background-color: #f9e562;
}
 .icon-content:after {
  border-radius: 0;
  bottom: auto;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s linear;
  width: 65px;
  background-color: #fff;
}
 .center__of__excellence__block {
  margin-top: 3rem;
  /* margin-bottom: 1rem; */
}
 .offered__programs__list > li i {
  margin-top: 3px;
}
 .box {
  display: grid;
  place-content: center;
  color: white;
  text-shadow: 0 1px 0 #000;
  border: solid 3px transparent;
  border-radius: 2em;
  position: relative;
}
 .header__logo__block img {
  max-width: 198px;
  width: 100%;
}
 .picture__box__1::before,
 .picture__box__2::after {
  content: "";
  position: absolute;
  background-color: #ffda47;
  z-index: -1;
}

/*  .picture__box__1::before{
  height: 65%;
  width: 65%;
  left: -13px;
  top: -13px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
 .picture__box__2::after{
  height: 65%;
  width: 65%;
  right: -15px;
  bottom: -13px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
} */

 .excellence-btn .apply__now__btn {
  margin-top: 0;
  display: inline-block;
}
 .excellence-btn .apply__now__btn img {
  display: inline-block;
}
 .pagination-style .slick-dots li {
  list-style-type: none;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  height: auto;
  width: auto;
}
 .pagination-style .slick-dots li button {
  padding: 0;
  border: 0;
  height: 9px;
  width: 9px;
  display: block;
  font-size: 0;
  background: #666;
  border: 1px solid #666;
  border-radius: 50%;
}
 .slick-dots li button:before {
  font-display: swap;
  font-size: 0;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "Ã¢â‚¬Â¢";
  text-align: center;
  opacity: 0.25;
  color: #ccc;
}
 .awards__section__headingText {
  text-align: center;
}
 .awards__section__headingText h3 {
  color: #002561;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
}
 .awards__section__headingText p {
  color: #000;
  font-weight: 400;
  font-size: 18px;
}
 .awards-img {
  max-width: 100%;
}
 .award-appreciations {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  text-align: center;
  flex-direction: column;
  color: #fff;
}
 .left {
  position: relative;
}
 .left:before,
.left .before {
  border-bottom: 20px solid transparent;
  border-right: 20px solid #ad274f;
  border-top: 20px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  left: -19px;
  top: 50%;
  width: 0;
}
 .right:before,
.right .before {
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ad274f;
  border-top: 20px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: -19px;
  top: 50%;
  width: 0;
  z-index: 9;
}
 .showcase {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
  text-align: center;
}
 .showcase img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
 .showcase .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(173, 39, 79, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 68px;
  border-radius: 0;
  line-height: normal;
  opacity: 1;
}
 .btn__outline {
  display: inline-block;
  width: max-content;
  text-align: center;
  border: 1px dashed #002561;
  border-radius: 12px;
  padding: 18px 12px;
  margin: 0 auto;
}
 .black_btn {
  background: #000;
  color: #fff;
  border-radius: 10px;
  line-height: 1.75;
  padding: 12px 18px;
  text-decoration: none;
}
 .button {
  font-size: 16px;
  font-weight: 400;
  box-shadow: none !important;
  outline: none !important;
  border: 0;
  transition: 0.3s all;
  font-size: 16px;
}
 .black_btn:hover {
  background: #7a1231;
  color: #fff;
  box-shadow: 3px 3px #00000040 !important;
}
 .showcase p {
  margin-top: 8px;
  font-size: 17px;
}
 .ranking__section {
  background: url("../img/ranking-section-bg.webp")
    no-repeat center;
  background-size: cover;
  height: 950px;
}
 .ranking__section__headingText {
  text-align: center;
}
 .ranking__section__headingText h3 {
  color: #ffda47;
  font-weight: 600;
  font-size: 30px;
}
 .ranking__section__headingText p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
 .ranking-img {
  max-width: 75%;
  width: 100%;
  height: auto;
}
 .top__ranking__section__left,
 .top__ranking__section__right {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0px);
  border: 1px solid #ffffff3d;
  padding: 30px 0px;
  border-radius: 16px;
}
 .top__ranking__section__right .ranking-right-img {
  max-width: 55%;
  width: 100%;
  height: auto;
}
 .ranking-nirf-img {
  max-width: 85%;
  width: 100%;
  height: auto;
}
 .rank-bodr-right {
  border-right: 1px dotted #ffffff;
}
 .rank-bodr-bot {
  border-bottom: 1px dotted #ffffff;
}
 .picture__desktop__view {
  display: block;
}
 .picture__mobile__view {
  display: none;
}
 .testimonial__section {
  background: url("../images/testimonial/testimonial-bg.png")
    no-repeat center;
  background-size: cover;
}
 .testimonial__section__heading {
  text-align: center;
}
 .testimonial__section__heading h3 {
  color: #002561;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
}
 .testimonial__section__heading p {
  font-weight: 400;
  font-size: 18px;
}
 .testimonial__slider .slick-slide {
  margin: 0 15px;
}
 .testimonial__section__top__content {
  padding: 20px 15px;
}
 .testimonial__section__top__content .testimonial__section__info {
  text-align: center;
  border-right: 1px solid #2e2e2e;
}

  .testimonial__section__top__content
  .testimonial__section__info
  h3 {
  color: #000;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 5px;
}
 .testimonial__section__top__content .testimonial__section__info p {
  color: #002561;
  font-weight: 600;
  font-size: 16px;
  font-size: 24px;
}
 .testimonial__placement__logo {
  padding: 7px 5px;
  /* border: 2px solid #cccccc; */
}
 .testimonial-section-bottom-line h2 {
  width: 90%;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 2rem;
}
 .testimonial-section-bottom-line h2 {
  font-size: 22px;
  font-weight: 500;
}
 .header__logo__block {
  text-align: center;
}
 .header__right__section .header__logo__block img {
  width: 100%;
  max-width: 85%;
}
 .header__section {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 0;
  border-bottom: 1px groove #ccc;
}
 .sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}
/*  .header-bodr-right {
  border-right: 1.5px dotted #2e2e2e;
} */
 .header__right__section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

 .checked {
  color: #ffda47;
}
 .page-sub-heading h3 {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
}
 .page-sub-heading h6 {
  color: #ffda47;
  font-weight: 500;
  font-size: 18px;
}

 .right-pad img {
  padding-right: 15px;
}


/* Program Offered section css */
 .program__offered__section__headingText {
  text-align: center;
}
 .program__offered__section__headingText h3 {
  
  color: #990000;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 12px;
}
 .program__offered__section__headingText p {
  
  font-weight: 400;
  font-size: 18px;
}
 .diff__prgrams__list__box .progeam__list__heading h3 {
  font-weight: 600;
  color: #002561;
  font-size: 19px;
}
 .offered__programs__list > li {
    list-style: none;
    margin-block: 4px;
    display: flex;
    font-size: 14px;
}
 .offered__programs__list > li > a {
  text-decoration: none;
  
  color: #000;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
 .offered__programs__list > li > a:hover {
  color: #002561;
}
 .diff__prgrams__list__box {
  background-color: #f2f3f7;
  padding: 21px 30px;
  border: 1px solid #cccccc;
  border-radius: 7px;
}
 .progeam__list__heading {
  margin-bottom: 13px;
}
 .offered__program__block__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
 .off__right__arrow__block i {
  font-size: 15px;
}
 .left__offered__img {
  position: relative;
}
 .left__offered__img img {
  border-radius: 7px;
}
 .left__offered__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ad274f;
  opacity: 0.8;
  border-radius: 7px;
}
.diff__program__apply__btn__block {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -45%);
}
.diff__program__apply__btn__block .program__off-_apply__btn {
  text-decoration: none;
  color: #fff;
  
  font-weight: 700;
  font-size: 22px;
}
 .apply__btn__block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.found-prog {
  font-size: 28px;
  color: #fff;
}
 .program__off-_apply__btn i {
  font-size: 20px;
}
 .header__left__icon__block {
  display: flex;
  align-items: center;
}
 .rise-excel-section-bottom {
  position: relative;
}
 .rise-excel-left-picture {
  position: absolute;
  bottom: 0;
}
 .empowering__future__para {
  background-color: #ad274f;
  /* margin-top: 50px; */
  color: #fff;
  padding: 2rem;
  /* width: calc(100% + 220px);
  margin-left: -270px; */
  position: relative;
  z-index: 1;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  justify-content: flex-end;
}
 .empowering__future__para p {
  /* padding-left: 260px; */
  /* width: 100%; */
  width: 50%;
  padding-right: 1rem;
}
 .excel__rise__picture__block img {
  position: relative;
  z-index: 3;
}
 .excel__rise__picture__block {
  max-width: 68%;
  width: 100%;
  height: auto;
}
 .rise__achieve__excel__section {
  background: url("../images/rise-achive/rise-esxcel-bg.jpg") no-repeat center;
  background-size: cover;
}
 .lab-wrap {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 5px 0;
  overflow: hidden;
}
 .gallery .lab-text {
  width: 85%;
}
 .lab-text {
  position: absolute;
  bottom: 40px;
  font-size: 20px;
  font-weight: 600;
  /* padding: 0 0 0 40px; */
  line-height: 1.4;
  left: 0;
  width: 100%;
  text-align: center;
  
  font-weight: 600;
}
 .gallery-zoom {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  filter: grayscale(100%);
}
 .gallery-zoom:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
  overflow: hidden;
}
.testimonial__section__top {
  padding: 70px 0 0 0;
}
 .rs-item {
  padding: 0 7px;
}
 .experience__beyond {
  background: url("../images/exp-beyond/exp-beyond-bg.webp") no-repeat center;
  background-size: cover;
}
 .showcase .overlay {
  position: relative;
}
 .showcase .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  background-image: url("../images/Awarsd-picture/awards-content-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 100%;
  width: 93%;
}
.testimonial__block {
  display: none;
}

.testimonial__block.active {
  display: block;
}
 .testimonial__block .testimonial__section__picture {
  position: relative;
}
 .testimonial__block .testimonial__section__picture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad274f;
  opacity: 0.8;
}
 .testimonial__block .testimonial__section__top__content {
  visibility: hidden;
  opacity: 0;
}

  .testimonial__block.slick-slide.slick-current.slick-active
  .testimonial__section__picture::before {
  content: none;
}

  .testimonial__block.slick-slide.slick-current.slick-active
  .testimonial__section__top__content {
  visibility: visible;
  opacity: 1;
}
 .icon__block {
  height: 498px;
  position: relative;
}
 .why__choose__us__left__icons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/why-choose-ct/why-choose-left-bg.png")
    no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  margin-left: 24px;
}
 .why__choose__us__right__icons::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/why-choose-ct/why-choose-right-bg.png")
    no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  margin-right: 63px;
}
 .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 0;
}
 .testimonial__section .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 0;
}

 .international__Mous li.slick-active button {
  background-color: #ffda47 !important;
}
 .coe_sec li.slick-active button {
  background-color: #ffda47 !important;
}
 .slick-dots button::before {
  content: none;
}
 .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bdcddf !important;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  font-size: 0;
  text-indent: -9999px;
  list-style: none;
}
 li.slick-active button {
  /* background-color: #002561 !important; */
  width: 40px;
  height: 8px;
  border-radius: 20px;
  transition: width 0.3s ease;
}
/*  #state-of-art-labs {
  background-color: #f2f3f7;
} */
 .state-of-art-labs-headingText h2 {
  text-transform: capitalize;
  /* color: #a00534; */
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600
  
}
 .state-of-art-labs-headingText p {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
  text-transform: initial;
  font-size: 18px;
  
}
 .effect-image {
  max-width: none;
  width: calc(100% + 50px);
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-40px, 0, 0);
  height: 100%;
}
 .life-pu-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent);
  z-index: 1;
}
 .life-pu-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  height: 100%;
}
 .life-pu-description {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  text-align: left;
}
 .life-pu-description h2 {
  font-size: 22px;
  margin-bottom: 28px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
 .life-pu-description p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7rem;
  
  text-align: left;
  margin-top: 0;
  transition: 0.3s ease-in-out;
}
 .effect-move:hover .effect-target,
.effect-move:hover .effect-image {
  transform: translate3d(0, 0, 0);
}
 .effect-move:hover .effect-image,
.effect-move:hover .effect-text {
  opacity: 1;
}
 .hero-grid-content {
  color: #fff;
  font-size: 1.25em;
  backface-visibility: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
 .effect-move:hover .effect-text {
  transition-delay: 0.05s;
  transition-duration: 0.35s;
}
 .state-of-art-labs {
  background: url("../images/international-collaborations/awards-section-bg.webp") no-repeat
    center;
  background-size: cover;
  height: 100%;
}
 .state-of-art-labs.sec-padding {
  padding: 0 0 70px;
}
/*  .placement-stats{
  padding: 80px 20px 0px 20px;
} */
 .state-of-art-labs-headingText {
  padding-top: 25px;
}
 .state-of-art-labs.top-margin {
  margin-top: -10px;
}
/*  .state-of-art-labs{
  background: url('../images/international-collaborations/awards-content-bg.png') no-repeat center;
  background-size: cover;
} */
 .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
}
 .experience__beyond.sec-padding {
  padding: 60px 0 60px 0;
}
 .program__offered__section.sec-padding {
  padding: 70px 0 50px;
}
 .placement__pathways.sec-padding {
  padding: 50px 0;
}
 .experience__beyond .slick-dots {
  margin-top: 25px;
}

.ranking-section__top-rankings--slider {
  margin-top: 40px;
}
.ranking-wrap {
  width: 970px;
  margin: 0 auto;
  position: relative;
}
.ranking-heading {
  position: relative;
  font-size: 37px;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-shadow: 0px 1px 4px #241616;
}
.ranking-heading:after {
  border-bottom: 1px solid rgba(255 255 255 / 51%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -5px;
  width: 100%;
  z-index: 9;
}
.ranking-wrap p {
  font-size: 19px;
  font-weight: 600 !important;
  margin-top: 15.5px;
  text-shadow: 0px 1px 4px #241616;
  line-height: 1.4;
}
.ranking-section__top-numbers .col-lg-3:last-child .top-numbers__card {
  border-left: 0;
  border-right: 1px solid #3565a9;
}
.rs-item {
  padding: 25px 10px;
}
.rs-item__in {
  background: 0 0;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}
.rs-item__in img {
  display: inline-block;
}
.rs-item__in:hover {
  background: #ffda47;
  border: 1px solid #ffda47;
  box-shadow: 0 0 15px rgb(239 152 162 / 90%);
  opacity: 1;
  border-radius: 7px;
}
.rs-item.slick-current.slick-active .rs-item__in {
  background: #ffda47;
  border: 1px solid #ffda47;
  box-shadow: 0 0 15px rgb(239 152 162 / 90%);
  opacity: 1;
  border-radius: 7px;
}
/*.rankingthumb-content__content {
  font-size: 
} */
.ranking-section__top-rankings--slider .slider-nav {
  /* width: 750px; */
  width: 740px;
  margin: auto;
}
.rankingthumb {
  color: var(--text-white);
  padding-right: 40px;
}
.rankingthumb span {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.rankingthumb__no {
  font-size: 54px;
  color: var(--bg-white);
  font-weight: 700;
  margin-bottom: 15px;
}
.rankingthumb__no sup {
  top: -22px;
  font-size: 28px;
}
.rankingthumb__content {
  font-size: 16px;
  line-height: 17px;
  
}
.rankingthumb__content small {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  
}
.arrow_box:after {
  left: 100%;
  top: 20%;
  border: 20px solid rgba(136, 183, 213, 0);
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-left-color: var(--bg-lightgray);
  margin-top: -20px;
}
 .ranking-section__top-rankings--slider .rs-item__in .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
 .rs-item.slick-current.slick-active .origonal-image {
  opacity: 0;
}
.ranking-section .origonal-image {
  background: transparent;
  border: none;
  box-shadow: none;
}
 .rs-item.slick-current.slick-active .hover-img {
  opacity: 1;
}
.ranking-section .origonal-image {
  background: transparent;
  border: none;
  box-shadow: none;
}
.ranking-section__top-rankings--slider .rs-item__in {
  position: relative;
  width: 135px;
  height: auto;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.ranking-section__top-rankings--slider .rs-item__in:hover {
  background: transparent;
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgb(239 152 162 / 90%);
  opacity: 1;
}
.ranking-section__top-rankings--slider .rs-item__in:hover .hover-img {
  opacity: 1;
  background: #ffda47;
  /* border: 1px solid #ffda47; */
  /* box-shadow: 0 0 15px rgb(239 152 162 / 90%); */
  border-radius: 10px;
  border-radius: 7px;
}
.rs-detail-item__slider {
  width: 1080px;
  margin: 0 auto;
}
.slider .slick-slider {
  margin-bottom: 55px;
}
 .pagination-style .slick-arrow {
  background: #ffda47;
  width: 19px;
}
.pagination-style .slick-arrow.slick-prev {
  right: auto;
  left: -40px;
}
.pagination-style .slick-arrow {
  position: absolute;
  border: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
}
 .pagination-style .slick-arrow.slick-next {
  right: -45px;
  left: auto;
}
 .pagination-style .slick-arrow.slick-next {
  right: -30px;
  left: auto;
}
 .rankingthumb-content-content {
  width: 200px;
  margin: 0 auto;
  line-height: 1.3;
  font-size: 18px;
  padding-right: 10px;
}

 .ranking__section li.slick-active button {
  background-color: #ffda47 !important;
  width: 40px;
  height: 8px;
  border-radius: 20px;
  transition: width 0.3s ease;
}
 .top__recruiters .slick-slide img {
  display: block;
  width: 150px;
  margin: 0 auto;
}
 .top__recruiters .item {
  border-right: 2px solid #d6d6d6;
}
 .testimonial-section-bottom-line h2 {
  margin-bottom: 10px;
}
 .testimonial-section-bottom-line .slick-dots {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
 .desktop-row {
  display: block;
}
 .mobile-row {
  display: none;
}
 .placement-stats-top {
  margin-top: -10px;
}
 .banner-mob-block {
  display: none;
}
 .accordion-button:not(.collapsed) {
  background-color: #f2f3f7;
  border-bottom: none !important;
}
 .accordion-item:first-of-type > .accordion-header .accordion-button {
    background-color: #f2f3f7;
    font-weight: 600;
    color: #990000;
    font-size: 17px;
    padding: 14px 1rem;
    box-shadow: none !important;
    cursor: initial;
}
 .accordion-body,
.accordion-button {
  background-color: #f2f3f7;
}
 .accordion-item,
.accordion-button {
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-radius: 5px !important;
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border: 1px solid #cccccc;
}
 .accordion-body {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border: 1px solid #cccccc;
  padding: 10px 1rem;
  border-top: none !important;
}
 .accordion-button {
  
  font-weight: 600;
  color: #002561;
  font-size: 18px;
}
 .accordion-button:focus {
  box-shadow: none !important;
}
 .accordion-row-2 .accordion-item {
  margin-bottom: 20px;
}
 .ranking__section {
  padding: 70px 0 50px;
}
 .placement-insight-section-bg {
  background: url("../images/Placement-Insight-section-images/placement_bg.jpg")
    no-repeat center;
  background-size: cover;
}
 .fixed_enquiry {
  width: 310px;
  float: right;
  margin-top: 60px;
  background: transparent;
  position: fixed;
  right: -310px;
  z-index: 9999;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
}
 .fixed_enquiry.opne-form {
  right: 0;
}
 .fixed_enquiry #toogle_form {
  left: -34%;
  position: absolute;
  bottom: 50%;
  right: 81%;
  transform: rotate(-90deg);
  -webkit-transform-origin: 50% 51%;
}
 .admsn_form_wrapper .form1 .npf_wgts, .fixed_enquiry .form1 .npf_wgts {
    background: #dae5f3;
    padding: 10px;
    border-radius: 20px;
    height: 467px;
}
 iframe {
  border: 0;
}
.mobile-view .form2 .npf_wgts {
    background: #dae5f3;
    padding: 10px;
    border-radius: 20px;
    height: 500px;
}
 .fixed_enquiry #toogle_form span {
  position: relative;
  font-size: 18px;
  padding: 7px 20px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  background: #a00534;
  font-weight: 500;
  letter-spacing: 1px;
  width: 180px;
  text-align: center;
  border-radius: 30px 30px 0 30px;
}
 .rise-excel-section-top {
  display: flex;
  justify-content: flex-end;
  width: 73%;
}
 .ct__scholarship__section .page__banner__apply__btn {
  width: 100%;
  justify-content: flex-start;
  margin-top: 0;
}
 .life-pu-box:hover .life-pu-description p {
  transform: translateY(-10px);
}
 .coe_sec .page__banner__apply__btn {
  width: 100%;
  justify-content: flex-start;
}
 .picture__box__1 {
  position: relative;
}
 .picture__box__1::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  width: 72%;
  height: 72%;
  background-color: #ffda47;
  border-radius: 27px;
}
 .picture__box__2 {
  position: relative;
}
 .picture__box__2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -13px;
  width: 72%;
  height: 72%;
  background-color: #ffda47;
  border-radius: 27px;
}
 .coe_sec .slick-slide {
  margin: 0 30px;
}
 .box {
  place-content: center;
  text-shadow: 0 1px 0 #000;
  --border-angle: 0turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    #213,
    #112 5%,
    #112 60%,
    #213 95%
  );
  border: solid 3px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(
    from var(--border-angle),
    transparent 25%,
    #08f,
    #f03 99%,
    transparent
  );
  background: var(--main-bg) padding-box, var(--gradient-border) border-box,
    var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.box:hover {
  animation-play-state: paused;
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
 .rankingthumb-content__no {
  font-weight: 700;
  font-size: 30px;
  
}
 .rankingthumb-content.rankingthumb-content-new {
  font-size: 22px;
}
 .experience__beyond__picture {
  overflow: hidden;
}
 .experience__beyond__picture img {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
 .experience__beyond__picture img:hover {
  transform: scale(1.1);
}
/*  .feature-block-1 {
  width: 114px !important;
  position: relative;
  right: 0;
} */
 .feature-block-2 {
  position: absolute;
  left: 0;
}
.py_3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
 .feature-block-3 {
  position: absolute;
  left: 0;
  bottom: 0px;
}
 .custom-mrg-1 {
  margin-right: 10px;
}
 .feature-block-1 .feature__icon__content {
  transition: all 0.5s ease-in-out;
}
 .feature__icon__content {
  transition: all 0.5s ease-in-out;
}
 

 .mobile-link a {
  display: block;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  background: #a50034;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  
}
 .mobile-link a {
  display: block;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  background: #a50034;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  
}
.et_pb_code_inner {
  display: none;
}
 .enquery_form.mobile-view {
  display: none;
}
 .header__bottom {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  z-index: 99;
}
 .header__top-left-new {
  width: 100%;
}
 .marquee {
  
  display: inline-block;
  white-space: nowrap;
  animation: scrollLeft 20s linear infinite;
  padding-left: 101%;
  height: 31px;
  font-size: 16px;
}
 .marquee:hover {
  animation-play-state: paused;
}
 .desktop-hide {
  display: none;
}
 .rankingthumb-content {
  padding: 0 10px;
}
 .mobile-design {
  display: none;
}
 .gallery-picture {
  position: relative;
}
 .mobile-gallery-description {
  position: absolute;
  bottom: 4px;
  margin-left: 15px;
}
 .mobile-gallery-description p {
  color: #fff;
  font-size: 16px;
  padding: 10px 5px 10px 8px;
  background-image: linear-gradient(83deg, #000000, #00000000);
  
}
 .mobile-lab-text {
  
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
 .bordr-wrap {
  height: 53px;
  display: inline-flex;
}
 .bordr-right {
  position: relative;
  border-right: dotted 2px #b6b3b3;
  margin-right: 15px;
}
 .found-prog{
  
  font-weight: 500;
  font-size: 20px;
}
 .rankingthumb-content__content {
  font-size: 15px;
}
.modified-accordion .card-header{ position: relative;}
.modified-accordion .card-header:after{ content: ''; position: absolute; width: 100%; 
 height: 100%; left: 0; top: 0;}
.modified-accordion .collapse:not(.show){ display: block;}
.modified-accordion .accordion-button:not(.collapsed)::after {
    display: none;
}
@media (max-width: 768px) {
  .modified-accordion .accordion-button:not(.collapsed)::after {
    display: block;
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon-transform);
  }
  .modified-accordion .accordion-item .collapse.show {
    background-image: var(--bs-accordion-btn-icon);
  }     
  .modified-accordion .accordion-item .collapse:not(.show){ display: none;}
  .modified-accordion .accordion-item .card-header:after{ display: none;}
  .gallery-item img {
    height: auto;
  }

  .fixed_enquiry,
  .banner_section .admsn_text {
    display: none;
  }
   .et_pb_code_inner {
    display: block;
  }
   .enquery_form.mobile-view {
    display: block;
  }
  .admsn_form_wrapper {
    margin-top: 40px;
  }
   .top__recruiters .slick-dots {
        left: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }
     .bordr-right{
      margin-right: 0;
      margin-left: -10px;
    }
     .bordr-wrap {
      height: 33px;
      display: inline-flex;
  }
   .coe-heading p {
    padding: 0;
  }
}

/* media queries (responsive design) */

@media screen and (min-width: 575px) and (max-width: 600px) {
   .feature__picture__outer__circle {
    width: 100% !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 600px) {
 .slick-dots {
  margin-top: 20px;
}
  .why__choose__feature__block.feature__box__5 {
    width: 100% !important;
    border-right: 0 dotted #fff !important;
  }
   .item__slider__block.bor-top {
    border-top: 0 dotted #2e2e2e;
  }
   .item__slider__block {
      width: 70px;
      padding: 8px 0;
  }
  .rec_slider {
        display: flex; /* Flexbox layout */
        flex-wrap: wrap; /* Allow items to wrap to the next row */
        justify-content: center; /* Center-align items */
    }
   .rec_slider .slider-item {
        flex: 1 1 calc(33.33% -10px); /* 3 items in a row */
        box-sizing: border-box; /* Ensure padding and borders are included */
        max-width: calc(33.33% -10px); /* Prevent items from growing too large */
   }
   .top__recruiters {
    height: 730px;
    background-position: center;
  }
  .heading-all-top.pb-4 {
      padding-bottom: 1rem;
  }
  .vc_col-sm-4 {
      display: none;
  }
  .slider-picture.picture__box__2 {
      display: none !important;
  }
   .offered__programs__list > li i {
    margin-top: 3px;
  }
   .stat-item {
     padding: 15px 13px 15px 13px;
  }
   .stat-item .feature--icon {
    margin-left: 0;
  }
   .experience__beyond__block {
    margin: 0;
  }
   .slick-dots {
    margin-top: 10px;
  }
   .pl-pr-30 {
    padding: 0 15px 0 15px;
   }
  .off__program__list .fa-arrow-right-long:before, .fa-long-arrow-right:before {
    font-size: 12px;
  }
  .diff__program__apply__btn__block .fa-arrow-right-long:before, .fa-long-arrow-right:before {
    font-size: 18px;
  }
   .mobile-gallery-description {
    margin-left: 0; 
  }
   .apply__btn__block{
    width: 100%;
  }
   .mobile-gallery-description p {
    font-size: 12px;
  }
  .found-prog {
       font-size: 14px;
  }
   .ranking__section {
       padding: 45px 0 0 0;
       height: auto;
  }
   .top__recruiters .slick-dots {
    display: none !important;
  }
   .why__choose__CT__ .feature-block-1 {
        left: 0;
    }
   .mobile-design .slick-slide {
    margin-bottom: 3px !important;
  }

   .page__banner {
    height: 100%;
  }
   .page__banner__heading h3 {
    font-size: 24px;
    line-height: 2rem;
  }
   .feature-block-1 {
    width: 94% !important;
  }
   .state-of-art-labs.top-margin {
    margin-top: 0;
  }
   .rankingthumb-content__no {
    font-size: 24px;
  }
  #naacRanking.rs-detail-item__slider {
    width: auto;
    margin: 0 auto;
  }
  .rs-detail-item__slider {
    width: 100%;
    margin: 0 auto;
  }
  #nrfRanking.rs-detail-item__slide {
    width: 180px;
  }
   .custom-rank-width {
    width: 160px !important;
    margin: 0 auto;
  }
   .resp-content {
    /* width: 360px !important; */
    text-align: center !important;
    font-size: 16px !important;
  }
   .life-pu-box::before {
    background-image: linear-gradient(
      to top right,
      rgba(0, 0, 0, 0.9),
      transparent
    );
  }
   .feature__icon__block:hover .feature__icon__content {
    margin-top: 10px;
  }
   .page__banner__content {
    padding: 40px 30px;
  }
   .feature__block__content p {
    margin-bottom: 0 !important;
    margin-top: 0px;
  }
   .coe_sec .pl-pr-30 {
    padding: 0;
  }
   .page__banner__para {
    font-size: 16px;
  }
   .feature-block-1 {
    position: unset;
    width: 100%;
  }
   .page__banner__apply__btn .apply__now__btn {
    font-size: 14px;
  }
   .placement__pathways__top .placement__pathways__headingText h3 {
    font-size: 20px;
    line-height: 1.57em;
  }
   .placement__subheading {
    font-size: 16px;
  }
   .placement__pathways__bottom {
    margin-top: 0px;
    padding: 0 20px;
  }

   .stat-block {
    padding: 18px 5px;
  }

   .experience-beyond-stats {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
   .rise__achieve__excel__section.sec-padding {
    padding: 20px 0;
  }
   .empowering__future__heading {
    margin-bottom: 2rem !important;
  }
   .ranking__section.sec-padding {
    padding: 50px 0 10px;
  }
   .placement__pathways.sec-padding {
    padding: 50px 0;
  }
   .pl-pr-70 {
    padding: 0 15px;
  }
   .top__recruiters__top__section .top__recruiters__heading h3 {
    
    font-size: 22px;
    line-height: 1.8rem;
  }
   .top__recruiters__heading p {
    font-size: 16px;
    line-height: 1.6em;
  }
   .placement-stats {
    height: 550px;
    padding: 20px;
  }
   .section-title {
    font-size: 30px;
  }
   .placement-stats-bottom {
    margin-top: 45px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 25px;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
  }
   .international__tie__ups {
    padding: 20px 0 40px;
  }
   .international__tieup__inner__block {
    padding-top: 20px;
  }
   .international__tie__ups__heading h3 {
    font-size: 22px;
    line-height: 2rem;
    padding-bottom: 0px;
  }
   .international__tie__ups__para p {
    margin-top: 25px;
    text-align: justify;
    font-size: 16px;
  }
   .picture__desktop__view {
    display: none;
  }
   .picture__mobile__view {
    display: block;
    margin-top: 10px;
  }
   .international__tie__ups {
    height: 100%;
  }
   .international__Mous__headingText h3 {
    font-size: 22px;
  }
   .international__Mous__para {
    font-size: 15px;
    line-height: 1.7rem;
  }
   .international__Mous {
    height: 785px;
  }
   .international__Mous .sec-padding {
    padding: 40px 0 60px;
  }
   .experience__beyond__headingText h3 {
    font-size: 21px;
  }
   .experience__beyond__headingText p {
    font-size: 16px !important;
  }
   .awards__section__headingText h3 {
    font-size: 22px;
  }
   .awards__section__headingText p {
    font-size: 15px;
  }
   .showcase .overlay {
    padding: 12px;
  }
   .showcase p {
    font-size: 14px;
  }

   .scholarship__section {
    height: 100%;
  }
   .why__choose__rungta__picture {
    display: none;
  }
   .top-heading h2 {
    padding-top: 10px;
    font-size: 23px;
  }
   .state-of-art-labs.sec-padding {
    padding: 30px 0 30px;
  }
   .future-res-col {
    padding: 0 10px !important;
  }
   .coe-heading h4 {
    font-size: 15px;
    text-align: center;
    line-height: 1.7rem;
  }
   .without-bottom-space::before {
    width: 100%;
  }
   .icon-wrapper img {
    width: 55px;
    margin: 0 auto;
  }
   .icon-content:after {
    left: 0;
  }
   .coe-heading p {
    font-size: 12px;
    line-height: 23px;
  }
   .coe_sec {
    height: 100%;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: -20px;
    margin-bottom: 35px;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
    margin-bottom: 20px;
  }
   .why__choose__ct__content {
    justify-content: space-around;
  }
   .feature__icon__block {
    flex-direction: column-reverse;
    position: unset;
    transform: unset;
    margin-bottom: 70px;
  }
   .feature__icon__content {
    margin-right: 0;
    margin-top: 15px;
  }
   .mobile-hide {
    display: none;
  }
   .why__choose__CT__ {
    height: 100%;
  }
   .res-col {
    flex-direction: column;
  }
   .why__choose__ct__headingText h3 {
    font-size: 21px;
  }
   .why__choose__ct__headingText p {
    font-size: 16px;
  }
   .why__choose__ct__bottom__section {
    margin-top: 25px;
  }
   .feature-block-4 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-6 .feature__icon__content p {
    margin-left: 0px;
  }
  .feature__icon__block .res-arrow {
    position: relative;
  }
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 20px;
    line-height: 2rem;
  }
   .why__choose__ct__block {
    flex-direction: column;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__feature__block .res-col {
    display: flex;
    flex-direction: column-reverse;
  }
   .feature__block__inner.res-margin-bot {
    /* margin-bottom: 40px; */
    margin-right: 15px;
  }
   .top-margin {
    margin-top: -46px;
  }
   .empowering__future__section::after {
    content: "";
    background-color: #fdd535;
    position: absolute;
    top: 0;
    left: 90px;
    height: 42%;
    width: 230px;
    margin-left: 60px;
  }
   .empowering-left-pic {
    position: relative;
    z-index: 1;
    max-width: 80%;
    width: 100%;
    margin: 35px 0 0 0px;
  }
   .empowering__future__content {
    padding: 30px 0px 0px 22px;
  }
   .empowering__future__heading h3 {
    font-size: 24px;
  }
   .empowering__subHeading {
    
    font-size: 25px;
  }
   .empowering__future__para p {
    font-size: 16px;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: 17px;
    margin-bottom: 30px;
  }
 

   .scholarship__section__content {
    padding-left: 153px;
    padding-right: 30px;
    padding-top: 1rem;
  }
   .scholarship__content__bottom p {
    font-size: 16px;
    line-height: 1.9rem;
  }
   .scholarship__section__heading h3 {
    font-size: 22px;
  }
   .top__recruiters__bottom__section {
    margin-top: -0.5rem !important;
    margin-bottom: 1.5rem !important;
  }
   .why__choose__ct__block {
    background: none;
  }
   .section-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
   .stat-item h3 {
    font-size: 35px;
    text-align: center;
  }
   .section-subtitle {
    font-size: 16px;
  }
   .stat-item p {
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  
   .ct__scholarship__josh__logo {
    width: 245px;
    margin: 0 auto;
  }
   .scholarship__block__picture {
    display: none;
  }
   .scholarship__block__content {
    margin-top: 35px;
  }
   .ct__sholarship__heading__logo {
    max-width: 94%;
    width: 100%;
    height: auto;
  }
   .ct__scholarship__section {
    height: 100%;
  }
   .scholarship__bottom__heading h3 {
    font-size: 19px;
    line-height: 2rem;
  }
   .scholarship__bottom__heading p {
    
    max-width: 100%;
    font-size: 16px;
  }
   .res-off-box {
    margin-top: 20px;
  }
   .program__offered__section__headingText h3 {
    font-size: 22px;
  }
   .program__offered__section__headingText p {
    font-size: 16px;
  }
   .offered__programs__list > li > a {
    font-size: 14px;
  }
  .diff__program__apply__btn__block .program__off-_apply__btn {
    font-size: 19px;
  }
   .diff__prgrams__list__box .progeam__list__heading h3 {
    font-size: 17px;
  }
   .header__right__section {
    justify-content: center;
    margin-top: 10px;
  }
   .placement-stats {
    background-size: cover;
    height: 100%;
    margin-bottom: -4px;
  }
   .empowering__future__heading {
    margin-top: 20px;
  }
   .empowering__future__para p {
    padding-left: 0;
    width: 100%;
  }
   .empowering__future__para {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
   .empowering__future__para p {
    padding-right: 0;
  }
   .empowering__future__para {
    padding: 1rem;
  }
   .rise-excel-section-top {
    width: 95%;
    justify-content: flex-start;
    margin-left: 1.5rem;
  }
   .gallery__section {
    background-color: #f2f3f7;
    height: 100%;
  }
   .lab-wrap {
    position: relative;
    width: 95% !important;
    text-align: center;
    color: #fff;
    margin: 5px 10px;
    overflow: hidden;
  }
   .res-mar-top {
    margin-top: 0 !important;
  }
   .ranking__section__headingText h3 {
    font-size: 24px;
  }
   .ranking__section__headingText p {
    font-size: 16px;
  }
   .top__ranking__section__left,
   .top__ranking__section__right {
    margin-bottom: 20px;
  }
   .ranking__slider__block {
    margin-top: 20px !important;
  }
   .page-sub-heading h3 {
    font-size: 19px;
  }
   .res-top-mar {
    margin-top: 20px;
  }
   .exp__beyond__headingText h3 {
    font-size: 16px;
  }
   .exp__beyond__paraText p {
    margin-top: 20px;
    font-size: 14px;
    text-align: justify;
  }
   .testimonial__section__top {
    padding-top: 0 !important;
  }
   .testimonial__section__heading h3 {
    font-size: 24px;
  }
   .testimonial__section__heading p {
    font-size: 16px;
  }
   .experience-beyond-stats {
    justify-content: center;
  }
  .slick-slide img {
    display: block;
    margin: 0 auto;
  }
   .international__tie__ups__para p {
    margin-bottom: 40px;
  }
   .showcase .overlay::before {
    content: none;
  }
   .testimonial-section-bottom-line h2 {
    line-height: 1.5rem;
  }
   .testimonial-section-bottom-line h2 {
    font-size: 16px;
  }
   .testimonial__section {
    height: 100%;
  }
  
   .why__choose__ct__block {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
   .feature__block__picture {
    width: 125px;
    height: 125px;
    margin: 0 auto;
  }
   .feature__block__picture img {
    width: 60px;
    height: 60px;
  }
   .feature__block__content p {
    font-size: 14px;
  }
   .feature__box__3 {
    margin-left: 0;
  }
   .placement-stats .slick-dots {
    margin-top: -20px;
  }
   .placement-stats li.slick-active button {
    background-color: #ffda47 !important;
  }
   .experience__beyond__content {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 18px 23px;
  }
   .experience__beyond__picture img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 100%;
  }
   .gallery__section.sec-padding {
    padding: 30px 0;
  }
   .sec-padding {
    padding: 40px 0 10px;
}
   .why__choose__us__left__icons::before {
    content: none;
  }
   .why__choose__us__right__icons::after {
    content: none;
  }
   .icon__block {
    height: 100%;
  }
   .coe_sec .top-heading h2 {
    padding-top: 15px;
  }
   .coe_sec.sec-padding {
    padding: 40px 10px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    padding-top: 0px;
    font-size: 22px;
    padding-bottom: 5px;
  }
   .gallery__section .gallery__section__top__headingText p {
    font-size: 15px;
  }
   .testimonial__section__heading h3 {
    font-size: 20px;
    padding-top: 3px;
  }
   .testimonial__section {
    padding: 30px 0;
  }
   .testimonial-section-bottom-line h2 {
    width: 100%;
    margin: 0 auto;
    margin-top: -10px;
    margin-bottom: 0px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 16px;
  }
   .testimonial__section__top__content {
    padding: 20px 0;
  }
   .lab-text {
    font-size: 18px;
  }
   .experience__beyond__headingText {
    padding-top: 0px;
  }
 
   .international__Mous__bottom {
    margin-top: 1rem;
  }
   .why__choose__CT__.sec-padding {
    padding: 40px 0 0px;
  }
   .international__tie__ups__para p {
    padding: 0 10px;
  }
   .program__offered__section.sec-padding {
    padding: 40px 0 20px;
  }
   .international__Mous__headingText h3 {
    font-size: 20px !important;
  }
   .state-of-art-labs-headingText {
    padding-top: 10px;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 22px;
  }
   .state-of-art-labs-headingText p {
    font-size: 16px !important;
    width: 100%;
  }
   .experience__beyond.sec-padding {
    padding: 40px 0;
  }

   .feature__icon__content p {
    font-size: 17px;
  }
   .testimonial__section .slick-dots {
    margin-top: 15px;
  }
   .below-margin {
    margin-bottom: 10px;
  }
   .slider-wrapper .life-pu-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
   .slider-wrapper .life-pu-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transform: unset;
  }
   .life-pu-box {
    height: 210px;
  }
  .life-pu-box {
    margin-bottom: 20px;
  }
   .slider-wrapper .slick-slide {
    width: 100%;
  }
   .slick-slide {
    margin: 0;
    padding: 0;
  }
   .slider-wrapper {
    width: 100%;
    overflow: hidden;
  }
   .res-padd {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
   .life-pu-description p {
    font-size: 16px;
    line-height: 1.4rem;
  }
   .why__choose__feature__block {
    width: 50%;
  }
   .header__right__section .header__logo__block img {
    width: 100%;
    max-width: 70%;
  }
   .feature__picture__outer__circle {
    border: none;
    padding-top: 0;
  }
  .ranking-section__top-rankings--slider .slider-nav {
    width: 100%;
  }
   .rankingthumb-content {
    font-size: 18px;
    text-align: left;
  }
  .rankingthumb-content-content {
    text-align: left;
    width: auto !important;
    font-size: 15px !important;
    padding-right: 10px;
  }
   .content.custom-rank-width {
    font-size: 18px;
    line-height: 1.3;
    width: 160px;
    margin: 0 auto;
}
  /*  .acred-rank{
    margin-left: 0;
  } */
   .gallery-zoom {
    background-position: bottom;
  }
   .icon-wrapper,
  .icon-content {
    width: 100%;
  }
   .icon-content {
    padding-top: 10px;
    width: 90%;
  }
   .center__of__excellence__block {
    margin-top: 3.7rem;
  }
   .coe-heading {
    padding-top: 0 !important;
    margin-bottom: -15px !important;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
    margin-bottom: 30px;
  }
   .bot-mg {
    margin-bottom: 10px;
  }
   .life-pu-box::before {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }
   .international__Mous.sec-padding {
    padding: 40px 0 60px;
  }
   .why__choose__ct__bottom {
    margin-top: 1.5rem;
  }
   .why__choose__ct__block {
    align-items: flex-start;
  }
   .why__choose__ct__block {
    height: 100%;
  }
   .bodr-right {
    border-right: 1px dotted #fff;
  }
   .bodr-bot {
    border-bottom: 1px dotted #fff;
  }
  .why__choose__feature__block {
    height: 100%;
  }
  .feature__block__inner {
    height: 100%;
  }
   .why__choose__feature__block {
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
   .top__recruiters .item {
    border-right: none;
    box-shadow: 5px 6px 10px transparent;
  }
   .top__recruiters {
    height: auto;
    background-position: center;
  }
   .top__recruiters__top__section .top__recruiters__heading h3 {
    padding-top: 10px;
  }
  .ranking-section__top-rankings--slider .rs-item__in {
    margin: 0 auto;
  }
  .pagination-style .slick-arrow.slick-prev {
    left: 0;
  }
   .pagination-style .slick-arrow.slick-next {
    right: 0;
  }
   .rdi-item {
    text-align: center !important;
    margin-left: 14px;
  }
  /* .rs-detail-item__slider {
    width: auto;
    margin: 0 auto;
  } */
  
    .rise__achieve__excel__section
    .page__banner__apply__btn
    .apply__now__btn {
    margin-top: 10px;
    margin-left: 8px;
  }
   .rise__excel__section__block {
    padding-top: 0;
  }
   .excel__rise__picture__block {
    /* margin-top: -35px; */
    margin-top: 0 !important;
  }
   .excel__rise__picture__block {
    max-width: 97%;
    width: 100%;
  }
   .header__left__icon__block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
   .program__offered__section__bottom {
    margin-top: 1rem !important;
  }
   .progeam__list__heading {
    margin-bottom: 0;
  }
   .desktop-row {
    display: none;
  }
   .mobile-row {
    display: block;
  }
   .banner-desktop {
    background: none;
  }
   .banner-mob-block {
    display: block;
  }
   .ranking__section .pagination-style .slick-dots {
    padding: 0 !important;
    bottom: -48px;
  }
   .pagination-style .slick-dots li {
    margin-right: 0;
  }
   .ranking__section__bottom {
    margin-top: 1.7rem !important;
  }
   .international__tie__ups__heading h3 {
    font-size: 20px;
    line-height: 1.7rem;
  }
  
    .accordion-item:first-of-type
    > .accordion-header
    .accordion-button {
    font-size: 15px;
    border-bottom: 1px solid #ccc;
    line-height: 1.3rem;
  }
   .accordion-button {
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }
   .accordian-1 .accordion-item {
    margin-bottom: 20px;
  }
   .experience__beyond .slick-dots {
    margin-top: 15px;
    padding: 0;
  }
   .rise-excel-left-picture {
    position: unset;
  }
   .page__banner__apply__btn {
    width: 100%;
    justify-content: flex-start;
  }
   .top__recruiters .slick-dots {
       display: none;
    }
    .slick-slide img {
      display: block;
      margin: 0 auto;
  }
}

@media screen and (max-width: 320px) {
   .testimonial__placement__logo {
    padding: 10px 5px 10px -5px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    p {
    font-size: 16px;
  }
   .testimonial__section__top__content .testimonial__section__info {
    padding-right: 5px;
  }
   .testimonial-section-bottom-line h2 {
    text-align: center;
    font-size: 14px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    padding-top: 0px;
    font-size: 20px;
    padding-bottom: 5px;
  }
   .gallery__section .gallery__section__top__headingText p {
    font-size: 14px;
  }
   .sec-padding {
    padding: 30px 0;
  }
   .top-heading h2 {
    font-size: 20px;
  }
   .res-mg {
    margin-top: 0 !important;
  }
   .icon-content p {
    font-size: 14px;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
    margin-bottom: 10px;
  }
   .why__choose__ct__headingText h3 {
    font-size: 20px;
  }

   .exp__beyond__paraText p {
    line-height: 1.3rem;
  }
   .experience__beyond__headingText h3 {
    font-size: 18px;
    line-height: 1.5rem;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 18px;
  }
   .life-pu-description p {
    font-size: 14px;
    line-height: 1.3rem;
  }
   .international__tie__ups__para p {
    font-size: 14px;
    line-height: 1.5rem;
  }
   .ct__scholarship__josh__logo {
    width: 160px;
    margin: 0 auto;
  }
   .ct__sholarship__heading__logo {
    max-width: 85%;
    width: 100%;
  }
   .scholarship__block__content__bottom {
    margin-top: 15px;
  }
   .scholarship__bottom__heading h3 {
    font-size: 15px !important;
    line-height: 1.4rem;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: -5px;
    margin-bottom: 15px;
  }
   .scholarship__block__content {
    margin-top: 15px;
  }
   .section-title {
    font-size: 20px;
    margin-bottom: 0;
  }
   .stat-item h3 {
    font-size: 32px;
  }
   .stat-item p {
    font-size: 15px;
  }
   .icon {
    width: 80px;
    height: 80px;
  }
   .custom-size {
    width: 40px !important;
    height: 40px !important;
  }
   .placement-stats-bottom .slick-slide {
    margin-bottom: 0 !important;
  }
   .stat-item p {
    margin-bottom: 0 !important;
  }
   .placement-stats-bottom {
    margin-top: 20px !important;
  }

   .placement__pathways__top .placement__pathways__headingText h3 {
    font-size: 16px;
  }
   .empowering__future__heading h3 {
    font-size: 20px;
  }
   .empowering__future__heading h3 {
    margin-bottom: 0;
  }
   .excel__rise__picture__block {
    margin-top: -35px;
  }
  .rs-detail-item__slider {
    width: 300px;
    margin: 0 auto;
  }
   .lab-text {
    font-size: 14px;
  }
   .rise-excel-left-picture {
    position: unset;
    display: none;
  }
   .empowering__future__para p {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 600px) {
   .why__choose__feature__block {
    margin-top: 0px;
    min-height: 278px;
  }
   .bottom-margin {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
   .page__banner__heading h3 {
    font-size: 22px;
    line-height: 2rem;
  }
   .pl-pr-50 {
    padding: 0 20px 0 20px;
  }
   .empowering__future__heading h3 {
    font-size: 22px;
  }
   .coe_sec .slick-slide {
    margin: 0 19px;
  }
   .empowering__subHeading {
    
    font-size: 24px;
  }
   .empowering__future__heading::after {
    content: "";
    width: 65%;
    margin-top: 7px;
  }
   .empowering__future__para p {
    font-size: 15px;
    line-height: 1.6rem;
  }
   .ranking__section__headingText h3 {
    font-size: 20px;
  }
   .ranking__section__headingText p {
    font-size: 16px;
  }
   .page-sub-heading h3 {
    font-size: 16px;
  }
   .placement__pathways.sec-padding {
    padding: 30px 0;
  }
   .placement__pathways__top .placement__pathways__headingText h3 {
    font-size: 20px;
    line-height: 1.7rem;
  }
   .placement__subheading {
    font-size: 16px;
  }
   .placement__subheading {
    font-size: 14px;
  }

   .placement__pathways__content h3 {
    font-size: 19px;
  }
   .placement__pathways__content p {
    font-size: 28px;
  }
   .found-prog {
    
    font-weight: 500;
    font-size: 17px;
}
   .international__Mous {
    height: 660px;
}
   .top__recruiters__top__section .top__recruiters__heading h3 {
    
    font-size: 20px;
    line-height: 1.8rem;
  }
   .feature__block__picture {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
   .top-margin {
    margin-top: 0;
  }
   .bottom-margin {
    margin-bottom: -10px;
  }
   .feature__block__content p {
    margin-bottom: 0 !important;
    margin-top: 0px;
  }
   .feature__block__inner.res-margin-bot {
    /* margin-bottom: 25px; */
    margin-bottom: 0;
    margin-right: 15px;
  }
   .feature__block__picture img {
    width: 50px;
    height: 50px;
  }
   .program__offered__section__headingText h3 {
    font-size: 20px;
  }
   .program__offered__section__headingText p {
    font-size: 16px;
  }
  .diff__program__apply__btn__block .program__off-_apply__btn {
    font-size: 22px;
  }
   .scholarship__bottom__heading h3 {
    font-size: 17px;
    line-height: 1.5rem;
  }
   .scholarship__bottom__heading p {
    
    max-width: 100%;
    font-size: 14px;
  }
   .international__tie__ups__heading h3 {
    font-size: 20px;
    line-height: 1.7rem;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 20px;
  }
   .state-of-art-labs-headingText p {
    font-size: 14px;
    width: 100%;
  }
   .experience__beyond__headingText h3 {
    font-size: 20px;
  }
   .experience__beyond__headingText p {
    font-size: 14px;
  }
   .exp__beyond__headingText h3 {
    font-size: 14px;
    padding-bottom: 17px;
    line-height: 1.3rem;
  }
  
   .why__choose__ct__headingText h3 {
    font-size: 19px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 14px;
  }
  .ranking-section__top-rankings--slider .slider-nav {
    width: 100%;
  }
   .rankingthumb-content {
    font-size: 15px;
    /* width: 160px; */
    text-align: left;
  }
   .lab-text {
    width: 100%;
    padding: 0 15px;
    font-size: 18px;
    text-align: center;
    margin: 0 !important;
  }
   .res-col {
    padding-left: 0;
  }
   .testimonial-section-bottom-line h2 {
    text-align: center;
    font-size: 15px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    padding-top: 0px;
    font-size: 20px;
    padding-bottom: 5px;
  }
   .gallery__section .gallery__section__top__headingText p {
    font-size: 15px;
  }
   .ct__scholarship__section .sec-padding {
    padding: 40px 0;
  }
   .top-heading h2 {
    font-size: 20px;
  }
   .res-mg {
    margin-top: 0 !important;
  }
   .icon-content p {
    font-size: 13px;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
    margin-bottom: 15px;
  }
   .why__choose__ct__headingText h3 {
    font-size: 20px;
  }
   .feature__icon {
    width: 85px;
    height: 85px;
  }
   .feature__icon img {
    width: 35px;
    height: 40px;
  }
   .feature__icon__content p {
    font-size: 15px;
  }
   .feature__icon__block {
    margin-bottom: 16px;
  }
   .feature__icon__block .res-arrow::after {
    content: "";
    height: 40px;
    top: 30px;
  }
   .bot-mg {
    margin-bottom: 0px;
  }

   .exp__beyond__paraText p {
    line-height: 1.4rem;
  }
   .future-res-col {
     padding: 0 !important;
  }
   .international__mous__slider .mous__image__icon {
    width: 85%;
    margin: 0 auto;
  }
   .international__tie__ups__para p {
    margin-bottom: 18px;
  }
   .international__tieup__inner__block {
    padding-top: 0px;
  }
   .ct__scholarship__josh__logo {
    width: 190px;
  }
   .ct__sholarship__heading__logo {
    max-width: 88%;
    width: 100%;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: -5px;
    margin-bottom: 10px;
  }
   .excel__rise__picture__block {
    margin-top: -35px;
  }
  /* .rs-detail-item__slider {
    width: auto;
    margin: 0 auto;
  } */
   .testimonial__section__bottom {
    margin-top: 1rem !important;
  }
   .gallery__section__bottom {
    margin-top: 0rem !important;
  }
   .empowering-apply-btn {
    margin-top: 40px;
    margin-bottom: 10px;
  }
   .pad-top {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 767.5px) {
   .page__banner__heading h3 {
    font-size: 28px;
    line-height: 2.5rem;
  }
   .page__banner__para {
    font-size: 17px;
  }
  .rs-detail-item__slider {
    width: 100%;
    margin: 0 auto;
  }
   .desktop-row {
    display: none;
  }
   .mobile-row {
    display: block;
  }
   .empowering__future__section::after {
    content: "";
    background-color: #fdd535;
    position: absolute;
    top: 0;
    left: unset;
    right: 0;
    height: 61%;
    width: 300px;
    margin-left: 60px;
    z-index: -1;
  }
   .experience__beyond__picture img{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 100%;
  }
  /*  .experience__beyond__picture{
    display: flex;
    justify-content: center;
  } */
   .experience__beyond__content{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
   .empowering-left-pic {
    max-width: 85%;
    margin: 85px 0 0 0;
  }
   .res-pad {
    padding: 0 15px 0 20px;
  }
   .empowering__future__content {
    padding: 30px 0px 0 20px;
  }
   .empowering__future__heading h3 {
    font-size: 26px;
  }
   .page__banner__apply__btn {
    margin-top: 15px;
  }
   .rise-excel-right-content {
    padding-top: 10px;
  }
   .excel__rise__picture__block {
    max-width: 97%;
  }
   .rise-excel-section-top {
    justify-content: flex-start;
    width: 90%;
    margin-left: 2rem;
  }
   .empowering__subHeading {
    
    font-size: 32px;
  }
   .empowering__future__para p {
    font-size: 16px;
    width: 100%;
  }
   .placement__pathways__top .placement__pathways__headingText h3 {
    font-size: 24px;
  }
   .placement__subheading {
    
    font-size: 16px;
  }


   .experience-beyond-stats {
    margin-top: 1rem;
    margin-bottom: 3.5rem;
  }
   .sec-padding {
    padding: 47px 0;
  }
   .top__recruiters__top__section .top__recruiters__heading h3 {
    
    font-size: 24px;
  }
   .top__recruiters__heading p {
    font-size: 16px;
  }
   .experience__beyond__block {
    /* margin: 0 10px; */
    width: 83%;
    margin: 0 auto;
}
   .why__choose__ct__block {
    flex-direction: column;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__feature__block .res-col {
    display: flex;
    flex-direction: column-reverse;
  }
   .feature__block__inner.res-margin-bot {
    margin-bottom: 40px;
  }
   .top-margin {
    margin-top: 0px;
  }
   .bottom-margin {
    margin-bottom: 0px;
    margin-left: 0px;
  }
   .why__choose__ct__block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 24px;
    line-height: 2.5rem;
  }
   .placement-stats {
    height: 550px;
    padding: 40px 20px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(0px);
    padding: 15px 10px;
    border-radius: 15px;
  }
   .section-title {
    font-size: 24px;
  }
   .section-subtitle {
    font-size: 17px;
  }
   .international__tie__ups__heading h3 {
    font-size: 24px;
    line-height: 2.3rem;
  }
   .international__Mous__para {
    font-size: 16px;
  }
   .experience__beyond__content {
    background-color: #ad274f;
    padding: 30px 24px;
  }
   .exp__beyond__headingText h3 {
    font-size: 20px !important;
    padding-bottom: 22px;
  }
   .exp__beyond__headingText h3::after{
    background-size: cover;
    left: 0;
  }
   .exp__beyond__paraText p {
    font-size: 20px;
    text-align: justify;
    margin-top: 35px;
  }

   .picture__desktop__view {
    display: none;
  }
   .picture__mobile__view {
    display: block;
    padding-bottom: 70px;
  }
   .international__tieup__inner__block {
    padding: 0;
  }
   .international__tie__ups {
    padding: 50px 0 0 0;
  }
   .international__tie__ups__para p {
    font-size: 16px;
    margin-bottom: 50px;
    padding: 0 30px;
  }
   .international__tie__ups__heading h3::after {
    width: 50%;
  }

   .awards__section__headingText h3 {
    font-size: 24px;
  }
   .awards__section__headingText p {
    font-size: 17px;
  }
   .showcase p {
    font-size: 16px;
  }
   .scholarship__section {
    height: 100%;
  }
   .scholarship__section__content {
    padding-left: 110px;
    padding-right: 30px;
    padding-top: 1rem;
  }
   .scholarship__content__bottom p {
    font-size: 18px;
    line-height: 1.9rem;
  }
   .scholarship__section__heading h3 {
    font-size: 22px;
  }
   .coe_sec {
    height: 100%;
  }
   .top-heading h2 {
    padding-top: 10px;
    font-size: 26px;
  }
   .coe-heading h4 {
    font-size: 22px;
  }
  /*  .without-bottom-space::before {
    left: -25px;
    width: 100%;
  } */
   .icon-wrapper img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
   .icon-content p {
    font-size: 14px;
  }
   .empowering-apply-btn {
    margin-top: 0;
    margin-bottom: 40px;
  }
   .coe-slider .slider-picture img {
    border-radius: 20px;
    border: 5px solid #fff;
  }
   .why__choose__ct__content {
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-evenly;
  }
   .feature__icon__block {
    flex-direction: column-reverse;
    position: unset;
    transform: unset;
    margin-bottom: 30px;
  }
   .why__choose__CT__ .feature-block-1{
    left: 0;
  }
   .why__choose__CT__.sec-padding {
    padding: 40px 0 0;
  }
   .coe_sec .slick-dots {
    margin-top: 10px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    font-size: 24px;
  }
   .gallery__section .gallery__section__top__headingText p {
    font-size: 16px;
  }
   .experience__beyond__headingText h3 {
    font-size: 24px;
  }
   .experience__beyond__headingText p {
    font-size: 16px;
    margin-top: 0;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 24px;
  }
   .state-of-art-labs-headingText p {
    font-size: 16px;
  }
   .accordion-row-2 .accordion-item {
    margin-top: 20px;
  }
   .feature__icon__content {
    margin-right: 0;
    margin-top: 15px;
  }
   .mobile-hide {
    display: none;
  }
   .why__choose__CT__ {
    height: 100%;
  }
   .res-col {
    flex-direction: column;
  }
   .why__choose__ct__headingText h3 {
    font-size: 24px;
  }
   .why__choose__ct__headingText p {
    font-size: 16px;
  }
   .why__choose__ct__bottom__section {
    margin-top: 40px;
  }
   .feature-block-4 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-6 .feature__icon__content p {
    margin-left: 0px;
  }
  .feature__icon__block .res-arrow {
    position: relative;
  }
   .feature__icon__block .res-arrow::after {
    content: none;
  }
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 24px;
    line-height: 2rem;
  }
   .why__choose__ct__block {
    flex-direction: column;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__feature__block .res-col {
    display: flex;
    flex-direction: column-reverse;
  }
   .feature__block__inner.res-margin-bot {
    margin-bottom: 40px;
  }
   .why__choose__rungta__picture {
    display: none;
  }
   .testimonial__section__heading h3 {
    font-size: 24px;
  }
   .testimonial__section__heading p {
    font-size: 16px;
  }
   .testimonial-section-bottom-line h2 {
    font-size: 18px;
  }
 
   .why__choose__ct__block {
    background: none;
  }
   .ranking__section__headingText h3 {
    font-size: 24px;
  }
   .ranking__section__headingText p {
    font-size: 16px;
  }
   .top__ranking__section__left,
   .top__ranking__section__right {
    margin-bottom: 30px;
  }
   .ranking__section {
    height: 100%;
  }
   .ranking-img {
    max-width: 56%;
    width: 100%;
    height: auto;
  }
   .ranking-nirf-img {
    max-width: 70%;
    width: 100%;
    height: auto;
  }
   .stat-star-rankings {
    margin-top: -35px !important;
  }
   .ct__scholarship__josh__logo {
    width: 245px;
    margin: 0 auto;
  }
   .scholarship__block__picture {
    display: none;
  }
   .scholarship__block__content {
    margin-top: 35px;
  }
   .ct__sholarship__heading__logo {
    max-width: 75%;
    width: 100%;
    height: auto;
  }
   .ct__scholarship__section {
    height: 100%;
  }
   .scholarship__bottom__heading h3 {
    font-size: 24px;
    line-height: 2.3rem;
  }
   .scholarship__bottom__heading p {
    
    max-width: 100%;
    font-size: 16px;
  }
   .placement-stats .slick-dots {
    margin-top: -16px;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: 0px;
    margin-left: 10px;
    padding: 10px 19px;
    border-radius: 13px;
    border: 2px solid #fff;
    font-weight: 600;
    
  }
   .placement__pathways__bottom {
    margin-top: 0;
  }
   .placement__pathways__content h3 {
    font-size: 18px;
  }
   .placement__pathways__content p {
    font-size: 28px;
  }
   .placement-stats {
    background: url("../images/research-innovation/feature-bg.jpg") no-repeat
      center;
    background-size: cover;
    height: 100%;
  }
   .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
   .stat-item h3 {
    font-size: 40px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
   .stat-item .feature--icon {
    text-align: center;
    margin-left: 0;
  }
   .gallery__section {
    background-color: #f2f3f7;
    height: 100%;
  }
   .lab-wrap {
    position: relative;
    width: 95% !important;
    text-align: center;
    color: #fff;
    margin: 5px 10px;
    overflow: hidden;
  }
   .res-mar-top {
    margin-top: 0 !important;
  }
   .empowering__future__heading {
    margin-top: 40px;
  }
   .experience-beyond-stats {
    justify-content: center;
  }
   .res-top-mar {
    margin-top: 25px;
  }
  .why__choose__feature__block {
    width: 50%;
  }
   .why__choose__ct__block {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
  }
   .feature__block__picture {
    width: 125px;
    height: 125px;
    margin: 0 auto;
  }
   .feature__block__picture img {
    width: 60px;
    height: 60px;
  }
   .feature__box__3 {
    margin-left: 0;
  }
   .why__choose__us__left__icons::before {
    content: none;
  }
   .why__choose__us__right__icons::after {
    content: none;
  }
   .icon__block {
    height: 100%;
  }
  .testimonial__section__top {
    padding: 0 !important;
  }
   .testimonial__section {
    height: 100%;
  }
   .international__tie__ups {
    height: 100%;
  }
   .diff__prgrams__image__box img {
    width: 100%;
  }
   .international__Mous {
    height: 740px;
  }

   .below-margin {
    margin-bottom: 10px;
  }
   .slider-wrapper .life-pu-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
   .slider-wrapper .life-pu-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transform: unset;
  }
   .life-pu-box {
    height: 210px;
  }
  .life-pu-box {
    margin-bottom: 20px;
  }
   .slider-wrapper .slick-slide {
    width: 100%;
  }
   .slick-slide {
    margin: 0;
    padding: 0;
  }
   .slider-wrapper {
    width: 100%;
    overflow: hidden;
  }
   .res-padd {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
   .life-pu-description p {
    font-size: 18px;
    line-height: 1.7rem;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__ct__block {
    height: 100%;
  }
   .why__choose__feature__block {
    width: 50%;
  }
   .feature__picture__outer__circle {
    border: none;
    right: 0;
  }
  .ranking-section__top-rankings--slider .slider-nav {
    width: 88%;
  }
   .rankingthumb-content {
    font-size: 16px;
    width: auto;
    margin-left: 25px;
  }
  /* .rankingthumb-content-content {
    width: auto;
    margin: 0 auto;
  } */
   .rankingthumb-content__content {
    font-size: 16px;
  }
   .cred-rank .resp-content {
    width: 100%;
  }
   .res-off-box {
    margin-top: 25px;
  }
   .bodr-right {
    border-right: 1px dotted #fff;
  }
   .bodr-bot {
    border-bottom: 1px dotted #fff;
  }
   .why__choose__feature__block {
    min-height: 292px;
  }
   .banner-desktop {
    background: none;
  }
   .banner-mob-block {
    display: block;
  }
   .page__banner {
    height: 100%;
  }
   .mba__spec__owl h3 {
    font-size: 19px;
    line-height: 1.5rem;
  }
   .rise-excel-left-picture {
    position: unset;
  }
   .page__banner__apply__btn {
    justify-content: flex-start;
    width: 100%;
  }
}
@media (max-width: 768px) {
 
  .stat-item {
    margin-bottom: 20px;
  }
   .placement-stats-bottom {
    margin-top: 40px;
  }
   .international__Mous__headingText h3 {
    font-size: 24px;
  }
   .header__right__section .header__logo__block img {
    width: 100%;
    max-width: 65%;
  }
   .header__bottom {
    position: fixed;
    bottom: 55px;
  }
   .mobile-design {
    display: block;
}
 .desktop-design {
  display: none;
}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
   .page__banner__heading h3 {
    font-size: 32px;
    line-height: 2.7rem;
  }
   .sec-padding {
    padding: 40px 0 !important;
  }
   .page__banner__para {
    font-size: 18px;
  }
   .picture__desktop__view {
    display: none;
  }
   .picture__mobile__view {
    display: block;
  }
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 24px;
    line-height: 2rem;
  }
   .why__choose__ct__block {
    flex-direction: column;
  }
   .page__banner {
    background-position: left;
    height: 500px;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__feature__block .res-col {
    display: flex;
    flex-direction: column-reverse;
  }
   .feature__block__inner.res-margin-bot {
    margin-bottom: 40px;
  }
   .placement__pathways__top .placement__pathways__headingText h3 {
    font-size: 24px;
  }
   .placement__subheading {
    
    font-size: 16px;
  }
   .placement__pathways__bottom {
    margin-top: 30px;
  }
   .experience-beyond-stats {
    justify-content: center;
  }
   .experience-beyond-stats {
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
   .placement__pathways__content h3 {
    font-size: 18px;
  }
   .placement__pathways__content p {
    font-size: 28px;
  }
   .top__recruiters__top__section .top__recruiters__heading h3 {
    
    font-size: 24px;
  }
   .top__recruiters__heading p {
    font-size: 16px;
  }
   .top__recruiters {
    height: 800px;
  }
   .top__recruiters {
    background-position: center;
  }
   .why__choose__CT .pl-pr-70 {
    padding: 0 30px !important;
  }
   .accordion-row-2 .accordion-item {
    margin-top: 10px;
  }
   .apply__btn__block {
    width: 100%;
  }
  .found-prog {
    font-size: 22px;
    color: #fff;
  }
   .section-title {
    font-size: 26px;
  }
   .section-subtitle {
    font-size: 16px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 15px 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 10px;
    justify-content: flex-start;
  }
   .stat-item h3 {
    font-size: 35px;
  }
   .international__tieup__inner__block {
    padding: 0;
  }
   .international__tie__ups {
    padding: 40px 0 0 0;
  }
   .international__tie__ups__heading h3 {
    font-size: 24px;
  }
   .international__tie__ups__heading h3::after {
    width: 57%;
  }
   .international__tie__ups__para p {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0;
    line-height: 1.7rem;
  }
   
   .awards__section__headingText h3 {
    font-size: 26px;
  }
   .awards__section__headingText p {
    font-size: 15px;
  }
   .scholarship__section {
    height: 100%;
  }
   .why__choose__ct__content {
    /* flex-direction: column; */
    align-items: flex-start;
    justify-content: space-evenly;
  }
   .feature__icon__block {
    flex-direction: column-reverse;
    position: unset;
    transform: unset;
    margin-bottom: 30px;
  }
   .feature__icon__content {
    margin-right: 0;
    margin-top: 15px;
  }
   .mobile-hide {
    display: none;
  }
   .why__choose__CT__ {
    height: 770px;
  }
   .res-col {
    flex-direction: column;
  }
  .ranking-section__top-rankings--slider .slider-nav {
    width: 668px;
    margin: auto;
  }
   .why__choose__ct__headingText h3 {
    font-size: 24px;
  }
   .why__choose__ct__headingText p {
    font-size: 16px;
  }
   .why__choose__ct__bottom__section {
    margin-top: 40px;
  }
   .feature-block-4 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 0px;
  }
   .feature-block-6 .feature__icon__content p {
    margin-left: 20px;
  }
  .feature__icon__block .res-arrow {
    position: relative;
  }
   .feature__icon__block .res-arrow::after {
    content: none;
  }
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 24px;
    line-height: 2rem;
  }
   .why__choose__ct__block {
    flex-direction: column;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__feature__block .res-col {
    display: flex;
    flex-direction: column;
  }
   .feature__block__inner.res-margin-bot {
    margin-bottom: 15px;
  }
  .why__choose__feature__block.feature__box__3.top-margin.left-mg {
    margin-left: -19px;
    margin-right: 56px;
    margin-right: 19px;
  }
  /*  .why__choose__rungta__picture {
    display: none;
  } */
   .coe_sec {
    height: 100%;
  }
   .top-heading h2 {
    padding-top: 10px;
  }
   .top-heading h2 {
    font-size: 26px;
  }
   .coe-heading h4 {
    font-size: 26px;
    text-align: center;
  }
   .without-bottom-space::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
  }
   .icon-wrapper img {
    width: 62px;
    margin: 0 auto;
  }
   .coe-heading {
    margin-bottom: 0 !important;
  }
   .res-mg {
    margin-top: 0 !important;
  }
   .coe_sec .slick-dots {
    margin-top: -10px;
  }
   .empowering-apply-btn {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
    justify-content: flex-start;
  }
   .coe-slider .slider-picture img {
    border-radius: 20px;
    border: 5px solid #fff;
  }
   .testimonial-section-bottom-line h2 {
    font-size: 20px;
    font-weight: 500;
    margin-top: -10px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 28px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    p {
    font-size: 29px;
  }
   .ct__scholarship__josh__logo {
    width: 245px;
    margin: 0 auto;
  }
   .scholarship__block__picture {
    display: none;
  }
   .scholarship__block__content {
    margin-top: 35px;
  }
   .ct__sholarship__heading__logo {
    max-width: 60%;
    width: 100%;
    height: auto;
  }
   .ct__scholarship__section {
    height: 100%;
  }
   .scholarship__bottom__heading h3 {
    font-size: 24px;
    line-height: 2.3rem;
  }
  
    .ct__scholarship__section
    .page__banner__apply__btn
    .empowering-apply-btnn {
    margin-top: 0 !important;
  }
   .scholarship__bottom__heading p {
    max-width: 90%;
  }
   .placement-stats {
    background-size: cover;
    height: 100%;
  }
   .gallery__section {
    background-color: #f2f3f7;
    height: 100%;
  }
   .lab-wrap {
    position: relative;
    width: 100% !important;
    text-align: center;
    color: #fff;
    margin: 5px 10px;
    overflow: hidden;
  }
   .res-mar-top {
    margin-top: 0 !important;
  }
   .empowering__future__heading {
    margin-top: 30px;
  }
   .empowering__future__heading h3 {
    font-size: 28px;
  }
   .empowering__subHeading {
    
    font-size: 34px;
  }
   .exp__beyond__paraText p {
    font-size: 18px;
    text-align: justify;
    margin-top: 16px;
  }
   .exp__beyond__headingText h3 {
    font-size: 17px;
    padding-bottom: 20px;
  }
   .exp__beyond__headingText h3::after{
    left: 0;
    background-size: cover;
  }
   .why__choose__ct__block {
    flex-direction: row;
    display: flex;
    flex-wrap: nowrap;
  }
   .feature__block__picture {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
   .feature__block__picture img {
    width: 40px;
    height: 40px;
  }
   .feature__box__3 {
    margin-left: 0;
  }
   .bottom-margin {
    margin-bottom: 0;
  }
  /*  .top-margin {
    padding-right: 40px;
  } */
   .international__tie__ups {
    height: 100%;
  }
   .picture__mobile__view {
    padding-bottom: 60px;
  }
   .why__choose__CT__.sec-padding {
    padding: 0;
  }
   .why__choose__us__left__icons::before {
    content: none;
  }
   .international__Mous__headingText h3 {
    font-size: 24px;
  }
   .international__Mous__bottom {
    margin-top: 2rem;
  }
   .international__Mous__para {
    margin-top: 0;
    font-size: 18px;
  }
   .why__choose__us__right__icons::after {
    content: none;
  }
  /*  .icon__block {
    height: 100%;
  } */
  .testimonial__section__top {
    padding: 0 !important;
  }
   .top-margin {
    margin-top: 0 !important;
  }
   .experience__beyond__content {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 20px 30px;
  }
   .experience__beyond__picture img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 100%;
  }
  
   .below-margin {
    margin-bottom: 10px;
  }
   .slider-wrapper .life-pu-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
   .slider-wrapper .life-pu-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transform: unset;
  }
   .life-pu-box {
    height: 210px;
  }
  .life-pu-box {
    margin-bottom: -7px;
  }
   .slider-wrapper .slick-slide {
    width: 100%;
  }
   .slick-slide {
    margin: 0;
    padding: 0;
  }
   .slider-wrapper {
    width: 100%;
    overflow: hidden;
  }
   .life-pu-description p {
    font-size: 16px;
    line-height: 1.7rem;
    width: 70%;
  }
   .experience__beyond__headingText h3 {
    font-size: 24px;
  }
   .experience__beyond__headingText p {
    font-size: 18px;
    margin-top: 0;
  }
   .slider-row-2 {
    display: flex;
    flex-wrap: nowrap;
  }
  /* .ranking-section__top-rankings--slider .slider-nav {
    width: 94%;
  } */
   .pagination-style .slick-arrow.slick-next {
    right: -23px;
    left: auto;
  }
   .rankingthumb-content {
    font-size: 18px;
  }
  .rankingthumb-content-content {
    width: auto;
    margin: 0 auto;
  }
  .rs-detail-item__slider {
    width: auto;
  }
   .rise__excel__section__block {
    padding-top: 0px;
  }
   .rise__achieve__excel__section.sec-padding {
    padding: 20px 0 40px;
  }
   .ranking__section__headingText h3 {
    font-size: 24px;
  }
   .ranking__section__headingText p {
    font-size: 16px;
  }
   .ranking-img {
    max-width: 85%;
    width: 100%;
    height: auto;
   }
   .mobile-hide {
    display: none;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 24px;
  }
   .state-of-art-labs-headingText {
    padding-top: 0;
  }
   .state-of-art-labs.sec-padding {
    padding: 50px 0;
  }
   .coe_sec.sec-padding {
    padding: 50px 0;
  }
   .gallery__section.sec-padding {
    padding: 40px 0 50px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    font-size: 24px;
  }
   .testimonial__section.sec-padding {
    padding: 50px 0;
  }
   .testimonial__section__heading h3 {
    font-size: 24px;
  }
  
    .rise__achieve__excel__section
    .page__banner__apply__btn
    .apply__now__btn {
    margin-left: 15px;
  }
   .ranking__section {
    height: 100%;
  }
   .header__right__section .header__logo__block img {
    width: 100%;
    max-width: 65%;
  }
  /*  .banner-desktop {
    background: none;
  } */
  /*  .banner-mob-block {
    display: block;
  } */
  /*  .page__banner {
    height: 100%;
  } */
}
@media screen and (min-width: 768px) and (max-width: 991px) {
   .why__choose__ct__block {
    flex-direction: row;
    display: flex;
    flex-wrap: nowrap;
  }
   .page__banner__apply__btn .apply__now__btn {
    margin-top: 82px;
}
   .bordr-wrap {
    height: 35px;
    display: inline-flex;
}
   .feature-block-1 {
    width: 70% !important;
    margin-left: 30px;
    left: 0 !important;
  }
   .testimonial__block .testimonial__section__picture{
    display: flex;
    justify-content: center;
  }
   .why__choose__CT .top-margin {
    margin-top: 75px !important;
  }
   .state-of-art-labs .top-margin {
    margin-top: -60px !important;
  }
   .top-margin {
    padding-right: 0px;
  }
   .feature__block__content p {
    font-size: 14px;
  }
   .bottom-margin {
    margin-bottom: 126px;
  }
   .bottom-margin {
    margin-bottom: 115px;
    margin-left: -22px;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__ct__bottom {
    margin-top: 0rem;
  }
   .program__offered__section.sec-padding {
    padding: 40px 0;
  }
   .program__offered__section__headingText h3 {
    font-size: 24px;
  }
   .placement-stats {
    padding: 50px 0;
  }
   .section-title {
    padding-top: 0;
  }
   .placement-stats-bottom {
    margin-top: 40px;
  }
   .lab-wrap {
    margin: 5px 0px;
  }
   .feature__picture__outer__circle {
    text-align: center;
    width: 114px;
    padding: 15px;
    border-radius: 50%;
    margin: 0 auto;
  }
   .feature__box__2 .feature__block__picture {
    background-color: #fff !important;
  }
   .top-mar-2 {
    margin-top: 101px !important;
  }
   .empowering__future__para p {
    width: 100%;
  }
   .rise-excel-left-picture {
    position: unset;
  }
   .rise-excel-right-content {
    margin-top: 10px;
  }
   .empowering__future__para p {
    font-size: 18px;
  }
   .page__banner__apply__btn {
    width: 100%;
    justify-content: flex-start;
  }
   .excel__rise__picture__block {
    max-width: 75%;
  }
   .rise-excel-section-top {
    width: 95%;
    justify-content: flex-start;
    margin-left: 2rem;
  }
   .why__choose__rungta__picture {
    display: none;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
   .showcase .overlay {
    padding: 0 54px;
  }
   .placement-stats {
    background-size: cover;
    height: 100%;
    margin-bottom: -3px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 15px 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .diff__program__apply__btn__block {
    width: 100%;
  }
  .found-prog {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px !important;
  }
  .diff__program__apply__btn__block .program__off-_apply__btn {
    font-size: 16px;
  }
   .program__off-_apply__btn i {
    font-size: 16px;
  }
   .page__banner__heading h3 {
    font-size: 34px;
    line-height: 2.8rem;
  }
   .empowering-left-pic {
    max-width: 90%;
    margin: 10px 0 0 80px;
  }
   .empowering__future__section::after {
    height: 96%;
    width: 282px;
  }
   .res-pad {
    padding: 0 15px 0 20px;
  }
   .empowering__future__content {
    padding: 30px 10px 30px 50px;
  }
   .picture__desktop__view {
    display: none;
  }
   .picture__mobile__view {
    display: block;
    padding-bottom: 80px;
  }
   .international__tieup__inner__block {
    padding: 0;
  }
   .international__tie__ups {
    padding: 50px 0 0;
  }
   .international__tie__ups {
    height: 100%;
  }
   .international__tie__ups__heading h3 {
    font-size: 28px;
    line-height: 2.5rem;
    padding-bottom: 20px;
  }
   .international__tie__ups__para p {
    margin-top: -15px;
    padding: 0;
  }
   .international__tie__ups__para p {
    font-size: 18px;
  }
   .experience__beyond__headingText h3 {
    font-size: 26px;
  }
   .experience__beyond__headingText p {
    font-size: 17px;
    margin-top: 8px;
  }
   .exp__beyond__headingText h3 {
    font-size: 18px;
  }
   .exp__beyond__paraText p {
    font-size: 16px;
    text-align: justify;
  }
   .exp__beyond__paraText p {
    margin-top: 20px;
    font-size: 15px;
  }
   .experience__beyond__content {
    background-color: #ad274f;
    padding: 30px 30px 20px;
  }
   .experience__beyond__picture img {
    height: 350px;
  }
  
   .awards__section__headingText h3 {
    font-size: 26px;
  }
   .awards__section__headingText p {
    font-size: 16px;
  }
   .showcase p {
    font-size: 13px;
  }
   .scholarship__section {
    height: 100%;
  }
   .scholarship__content__bottom p {
    font-size: 17px;
  }
   .scholarship__section__heading h3 {
    font-size: 24px;
  }
   .scholarship__section__content {
    width: calc(100% + 170px);
    margin-left: -131px;
    padding-left: 100px;
    margin-top: 35px;
  }
   .scholarship__left__picture {
    margin-right: 30px;
    margin-left: -30px;
  }
   .feature__icon {
    width: 90px;
    height: 90px;
  }
   .feature__icon img {
    width: 40px;
    height: 40px;
  }
   .feature-block-4 .feature__icon__content p {
    margin-left: 0px;
  }
  
    .ct__scholarship__section
    .page__banner__apply__btn
    .apply__now__btn {
    margin-top: 0;
  }
   .feature__icon__content p {
    font-size: 14px;
    margin-top: 15px;
  }
   .res-left-flex{
    flex-direction: column-reverse !important;
  }
   .feature-block-6 .feature__icon__content p{
    margin-left: 0;
  }
   .feature-block-5 {
    right: -45%;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 15px;
  }
   .feature-block-6 {
    position: absolute;
    right: 15%;
  }
   .feature__icon__content {
    margin-right: 0px;
  }
  .why__choose__rungta__picture img {
    /* max-width: 80%;
    width: 100%;
    height: auto;
    padding-left: 0px; */
    display: none;
  }
   .why__choose__CT__ {
    height: 100%;
  }
  /*  .res-block-right {
    margin-left: -65px;
  } */
   .coe_sec {
    height: 100%;
  }
   .top-heading h2 {
    padding-top: 0;
    font-size: 28px;
  }
   .ct__scholarship__josh__logo {
    width: 235px;
  }
   .ct__sholarship__heading__logo {
    max-width: 50%;
    width: 100%;
  }
   .mobile-hide {
    display: none;
  }
   .scholarship__bottom__heading h3 {
    font-size: 24px;
  }
   .scholarship__bottom__heading p {
    
    max-width: 94%;
    line-height: 1.7rem;
    text-align: justify;
    font-size: 15px;
  }
   .ct__scholarship__section .page__banner__apply__btn {
    width: 100%;
    justify-content: flex-start;
  }
   .rise-excel-section-top {
    width: 80%;
  }
   .scholarship__block__content {
    margin-top: 0px;
  }
   .scholarship__block__picture {
    margin-top: 62.3%;
  }
   .scholarship__block__content__bottom {
    margin-top: 15px;
  }
   .scholarship__bottom__heading p {
    margin-top: 0;
  }
   .scholarship__block__picture img {
    max-width: 100%;
    width: 100%;
  }
   .empowering__future__para p {
    font-size: 15px;
  }
  /*  .empowering__future__para {
    margin-top: 67px;
    padding: 1.5rem;
    width: calc(100% + 370px);
    margin-left: -378px;
  } */

 
   .placement__pathways__content p {
    font-size: 28px;
  }
  /*  .empowering__future__para p {
    padding-right: 1rem;
    padding-left: 355px;
  } */
   .feature__block__picture {
    width: 100px;
    height: 100px;
  }
   .feature__block__picture img {
    width: 60px;
    height: 60px;
  }
   .feature__block__content p {
    font-size: 14px;
  }
   .why__choose__ct__block {
    background-position: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
   .bottom-margin {
    margin-bottom: 97px;
    margin-left: -29px;
  }
   .feature__box__3 {
    margin-left: -20px;
  }
   .res-outer-circle {
    width: 87%;
  }
   .placement__pathways__content h3 {
    font-size: 18px;
  }
   .excel__rise__picture__block {
    max-width: 50%;
  }
   .empowering__future__para {
    padding: 1.3rem;
  }
   .empowering__future__para p {
    width: 48%;
  }
   .testimonial__section {
    height: 100%;
    padding: 50px 0;
  }
   .empowering__future__heading h3 {
    font-size: 24px;
  }
   .empowering__subHeading {
    font-size: 32px;
  }
  .testimonial__section__top {
    padding: 0;
    padding-top: 0 !important;
  }
   .top-margin {
    margin-top: 0px !important;
  }
   .rise__excel__section__block {
    padding-top: 0px;
  }
   .program__offered__section__headingText h3 {
    font-size: 24px;
  }
   .diff__prgrams__list__box .progeam__list__heading h3 {
    font-size: 18px;
  }
   .stat-item h3 {
    font-size: 40px;
  }
   .state-of-art-labs.sec-padding {
    padding: 50px 0;
  }
   .state-of-art-labs-headingText {
    padding-top: 0;
  }
  /*  .scholarship__block__picture {
    display: none;
  } */
   .ct__scholarship__section {
    height: 650px;
  }
   .why__choose__CT__.sec-padding {
    padding: 50px 0 60px;
  }
   .why__choose__ct__headingText h3 {
    font-size: 28px;
  }
   .why__choose__ct__headingText p {
    font-size: 16px;
  }
   .why__choose__ct__content {
    align-items: flex-start;
    /* margin-left: -70px; */
    justify-content: space-evenly;
  }
  .why__choose__rungta__picture {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
   .feature-block-2 {
    position: absolute;
    left: 40px;
  }
   .feature-block-1 {
    width: 94% !important;
    position: relative;
    right: -45px;
  }
   .feature__icon__block{
    position: unset;
    transform: unset;
    flex-direction: column;
    margin-bottom: 25px;
  }
  /*  .feature-block-3 {
    position: absolute;
    left: 68px;
    bottom: 0px;
  } */
   .why__choose__us__right__icons::after {
    content: none;
  }
   .why__choose__us__left__icons::before {
    content: none;
  }
   .gallery__section {
    height: 100%;
  }
   .testimonial__section__heading h3 {
    font-size: 26px;
  }
   .below-margin {
    margin-bottom: 10px;
  }
   .slider-wrapper .life-pu-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
   .slider-wrapper .life-pu-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transform: unset;
  }
   .life-pu-box {
    height: 210px;
  }
  .life-pu-box {
    margin-bottom: -7px;
  }
   .slider-wrapper .slick-slide {
    width: 100%;
  }
   .slick-slide {
    margin: 0;
    padding: 0;
  }
   .slider-wrapper {
    width: 100%;
    overflow: hidden;
  }
   .life-pu-description p {
    font-size: 15px;
    line-height: 1.6rem;
    width: 70%;
  }
   .slider-row-2 {
    display: flex;
    flex-wrap: nowrap;
  }
   .why__choose__CT {
    height: 100%;
  }
   .why__choose__ct__bottom {
    margin-top: 0;
  }
   .left-mg {
    margin-left: -5px;
    margin-right: 25px;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 15px 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 10px;
    justify-content: flex-start;
  }
  /*  .schl-res-col {
    flex: 0 auto;
    width: 50%;
  } */
   .international__Mous {
    height: 750px;
  }
   .experience__beyond.sec-padding {
    padding: 50px 0;
  }

   .coe_sec.sec-padding {
    padding: 50px 0;
  }
   .without-bottom-space::before {
    content: "";
    width: 92%;
    height: 4px;
  }
   .coe-heading h4 {
    font-size: 26px;
  }
   .icon-wrapper,
  .icon-content {
    width: unset;
  }
   .icon-content {
    position: relative;
    padding-top: 10px;
  }
   .icon-content p {
    font-size: 14px;
  }
   .center__of__excellence__block {
    margin-bottom: 0;
  }
  /*  .empowering-apply-btn {
    margin-top: -25px;
  } */
   .coe-heading {
    margin-bottom: 1rem;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
  }
   .gallery__section.sec-padding {
    padding: 50px 0;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    font-size: 28px;
  }
   .gallery__section .top-margin {
    margin-top: 0px !important;
  }
   .res-mar-top {
    margin-top: 0 !important;
  }
   .testimonial-section-bottom-line h2 {
    margin-top: -10px;
  }
   .why__choose__CT .top-margin {
    margin-top: 90px !important;
  }
   .ranking__section__headingText h3 {
    font-size: 28px;
  }
   .ranking__section__headingText h3 {
    font-size: 28px;
  }
   .program__offered__section.sec-padding {
    padding: 50px 0;
  }
  /*  .banner-desktop {
    background: none;
  }
   .banner-mob-block{
    display: block;
  }
   .page__banner{
    height: 100%;
  } */
   .page__banner {
    background-position: left;
    height: 460px;
  }
   .resp-pad {
    padding-right: 1.5rem !important;
  }
   .scholarship__block__picture {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
   .showcase p {
    font-size: 14px;
  }
   .feature__icon__block:hover .feature__icon__content {
    margin-top: 10px;
}
   .why__choose__CT__ .feature-block-1{
    left: 0;
  }
    .ranking-section__top-rankings--slider .slider-nav {
      width: 686px;
      margin: auto;
  }
   .feature__picture__outer__circle.feature-block-1 {
    width: 95%;
    margin-left: -8px;
}
   .apply__btn__block {
    width: 100%;
  }
  .found-prog {
    font-size: 22px;
    color: #fff;
  }
  .diff__program__apply__btn__block .program__off-_apply__btn {
    font-size: 18px;
  }
   .placement-stats {
    background-size: cover;
    height: 100%;
    margin-bottom: -3px;
  }
   .why__choose__ct__content {
    /* flex-direction: column; */
    align-items: flex-start;
    justify-content: space-evenly;
  }
   .feature__icon__block {
    flex-direction: column-reverse;
    position: unset;
    transform: unset;
    margin-bottom: 30px;
  }
   .why__choose__rungta__picture {
    display: none;
  }
   .stat-item {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0px);
    padding: 15px 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 10px;
    justify-content: flex-start;
  }
   .international__tie__ups {
    height: 100%;
    padding: 60px 0 0 0;
  }
   .resp-pad {
    padding-right: 0.7rem !important;
  }
   .international__tieup__inner__block {
    padding: 0;
  }
   .international__tie__ups__heading h3::after {
    left: -13%;
  }
   .international__tie__ups__para p {
    font-size: 18px;
    margin-bottom: 20px;
  }
   .international__tie-ups__picture {
    margin-top: 50px;
    margin-left: -55px;
  }
   .tie__up__image__inner img {
    max-width: 50%;
    width: 100%;
  }
   .tie__up__image__inner img {
    position: absolute;
    top: 24%;
    left: 26%;
  }
   .tie__up__image__icon img {
    width: 57px;
    height: 57px;
    object-fit: contain;
  }
   .tie__up__image__icon {
    width: 120px;
    height: 120px;
  }
   .tie__up__image__outer {
    width: 660px;
    height: 350px;
  }
   .tie__up__image__text.tie-up-text-2 {
    position: absolute;
    top: -110px;
  }
   .tie__up__image__text h2 {
    font-size: 47px;
  }
   .tie__up__image__inner h3 {
    font-size: 24px;
    line-height: 2rem;
  }
   .experience__beyond__headingText h3 {
    font-size: 28px;
  }
   .experience__beyond__headingText p {
    font-size: 16px;
    margin-top: 10px;
  }
   .exp__beyond__headingText h3 {
    position: relative;
    font-size: 17px;
    line-height: 1.4rem;
    padding-bottom: 17px;
}
 .exp__beyond__headingText h3::after {
  content: "";
  position: absolute;
  background: url("../images/exp-beyond/exp-beyond-line.png") no-repeat center;
  background-size: cover;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}
   .exp__beyond__paraText p {
    font-size: 16px;
    text-align: justify;
  }
   .exp__beyond__paraText p {
    margin-top: 25px;
  }
   .why__choose__us__left__icons {
    height: 500px;
    position: relative;
  }
   .why__choose__us__left__icons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/Why-Choose-CGC-images/why-choose-left-bg.png")
      no-repeat center;
    background-size: contain;
    width: 100%;
    height: 100%;
    margin-left: 25px;
  }

   .experience__beyond__content {
    background-color: #ad274f;
    padding: 30px 30px 20px 30px;
  }
   .experience__beyond__picture img {
    height: 385px;
  }
  
   .ct__scholarship__section {
    height: 100%;
  }
   .ct__scholarship__josh__logo {
    width: 280px;
  }
   .scholarship__bottom__heading h3 {
    font-size: 24px;
  }
   .scholarship__bottom__heading p {
    max-width: 85%;
    margin-top: 20px;
    line-height: 1.8rem;
    font-size: 18px;
}
   .scholarship__block__picture img {
    display: none;
  }
   .ct__scholarship__section .apply__now__btn {
    margin-top: 0 !important;
  }
   .res-sec-pad {
    padding: 30px 0 0;
  }
   .scholarship__block__content {
    padding: 50px 0;
  }
   .scholarship__block__picture {
    /* margin-top: 60%; */
    display: none;
  }
  

  .why__choose__rungta__picture img {
    max-width: 82%;
    width: 100%;
    height: auto;
  }
   .feature-block-5 {
    /* right: -30%; */
    flex-direction: column;
  }
   .feature-block-2 {
    left: 0%;
  }
  /*  .feature-block-3 {
      position: absolute;
      left: 0;
    } */
   .feature-block-6 {
    /* position: absolute;
    right: 2%; */
    flex-direction: column;
  }
   .feature__icon__content {
    margin-right: 0;
    margin-top: 15px;
  }
  /*  .res-block-left {
    margin-right: -35px;
  } */
  /*  .feature-block-1 {
    width: 94% !important;
    position: relative;
    right: 0%;
} */
   .res-block-right {
    /* margin-left: -40px; */
    flex-direction: column;
  }
   .top-heading h2 {
    padding-top: 0;
    font-size: 30px;
  }
   .coe-heading h4 {
    font-size: 24px;
  }
   .without-bottom-space::before {
    width: 83%;
  }
   .icon-wrapper img {
    width: 70px;
  }
   .icon-content p {
    font-size: 14px;
  }
   .coe-heading p {
    font-size: 14px;
  }
   .coe-slider .slider-picture img {
    border: 5px solid #fff;
  }
   .coe_sec {
    height: 100%;
  }
   .testimonial__section__top__content {
    padding: 20px 0px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 17px;
  }
   .testimonial-section-bottom-line h2 {
    font-size: 21px;
  }
   .ct__scholarship__section.sec-padding {
    padding: 50px 0 0;
  }
   .testimonial__section .pl-pr-70 {
    padding: 0 30px;
  }
   .testimonial__section {
    height: 100%;
    padding: 50px 0;
  }
  
   .why__choose__CT .why__choose__ct__headingText h3 {
    font-size: 28px;
  }
   .feature__block__picture img {
    width: 55px;
    height: 55px;
  }
   .feature__block__picture {
    width: 100px;
    height: 100px;
  }
   .feature__picture__outer__circle {
    width: 135px;
  }
   .feature-block-1 {
    width: 135px !important;
  }
   .res-outer-circle {
    width: 83%;
  }
   .res-outer-circle-2 {
    width: 85%;
  }
   .gallery__section {
    height: 100%;
  }
   .top-margin {
    margin-top: 115px;
  }
   .why__choose__us__left__icons {
    position: relative;
    height: 500px;
  }
   .why__choose__us__left__icons::before {
    content: "";
  }
   .left-mg {
    margin-left: -46px;
    margin-right: 26px;
  }
   .left-mg-2 {
    margin-right: -30px;
  }
   .top-margin-one {
    margin-top: 115px;
    margin-left: 0;
  }
   .bottom-margin {
    margin-bottom: 75px;
    margin-left: -62px;
  }
   .bottom-margin {
    margin-bottom: 115px;
  }
   .empowering__future__para p {
    font-size: 15px;
  }
   .excel__rise__picture__block {
    max-width: 47%;
  }
   .empowering__future__para {
    padding: 1rem;
  }
   .rise-excel-section-top {
    width: 74%;
  }
   .rise__achieve__excel__section {
    padding: 50px 0;
  }
   .program__offered__section.sec-padding {
    padding: 50px 0;
  }
   .rise__excel__section__block {
    padding-top: 0;
  }
   .empowering__future__heading h3 {
    font-size: 24px;
  }
   .empowering__subHeading {
    font-size: 32px;
  }
   .ct__sholarship__heading__logo {
    max-width: 50%;
  }
   .page__banner__apply__btn {
    width: 100%;
    justify-content: flex-start;
  }
   .mobile-hide {
    display: none;
  }
   .scholarship__block__content {
    margin-top: 0;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 0px;
  }
  /*  .feature-block-6 .feature__icon__content p {
    margin-left: 20px;
} */
   .feature-block-6 .feature__icon__content p {
    margin-left: 0;
  }
  /*  .feature-block-1{
  width: 100% !important;
} */
   .why__choose__us__left__icons::before {
    margin-left: 37px;
  }
   .why__choose__us__right__icons::after {
    margin-right: 55px;
  }
  /*  .feature__icon__content {
    margin-right: 18px;
  } */
   .why__choose__us__right__icons::after {
    content: none;
  }
   .why__choose__us__left__icons::before {
    content: none;
  }
   .feature-block-4 .feature__icon__content p {
    margin-left: 15px;
  }
   .feature__icon__content p {
    font-size: 15px;
  }
   .feature__icon {
    background-color: #a92846;
    width: 90px;
    height: 90px;
  }
   .feature__icon img {
    width: 40px;
    height: 45px;
  }
   .why__choose__ct__block {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  /*  .res-mar-top {
  margin-top: 0 !important;
} */
  .testimonial__section__top {
    padding: 0 !important;
  }
   .below-margin {
    margin-bottom: 10px;
  }
   .slider-wrapper .life-pu-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
   .slider-wrapper .life-pu-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transform: unset;
  }
   .life-pu-box {
    height: 210px;
  }
  .life-pu-box {
    margin-bottom: -7px;
  }
   .slider-wrapper .slick-slide {
    width: 100%;
  }
   .slick-slide {
    margin: 0;
    padding: 0;
  }
   .slider-wrapper {
    width: 100%;
    overflow: hidden;
  }
   .life-pu-description p {
    font-size: 15px;
    line-height: 1.3rem;
    width: 70%;
    padding: 0 0 0 15px;
  }
   .international__Mous {
    height: 720px;
  }
   .international__tie__ups__para p {
    padding: 0;
  }
   .slider-row-2 {
    display: flex;
    flex-wrap: nowrap;
  }
   .stat-block {
    padding: 15px 10px;
  }

 
   .top__recruiters__top__section .top__recruiters__heading h3 {
    
    font-size: 28px;
  }
   .top__recruiters__heading p {
    font-size: 17px;
    line-height: 1.9rem;
  }
   .program__offered__section__headingText h3 {
    
    font-size: 28px;
  }
   .section-title {
    font-size: 28px;
  }
  .why__choose__feature__block.feature__box__3.top-margin.left-mg {
    margin-left: -25px;
    margin-right: 42px;
  }
   .testimonial-section-bottom-line h2 {
    margin-top: 10px;
  }
   .page__banner {
    background-position: left;
    height: 510px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300.98px) {
   .sec-padding {
    padding: 40px 0;
  }
   .experience__beyond.sec-padding {
    padding: 40px 0;
  }
  .why__choose__rungta__picture.text-center {
    margin-left: -2rem;
}
   .international__Mous {
    height: 732px;
  }
  /*  .feature__icon__content {
    margin-right: 8px;
  } */
   .empowering__future__heading h3 {
    font-size: 28px;
  }
   .feature-block-1 {
    /* width: 94% !important; */
    position: relative;
    right: 14px;
  }
   .feature-block-5 {
    position: absolute;
    top: 30%;
    right: -39%;
  }
   .feature__icon__block {
    position: relative;
    left: -12px;
    /* width: 100%; */
  }
  .feature__icon__block.feature-block-1.res-block-left {
    position: relative;
    left: -13px;
  }
   .feature-block-5 {
    position: relative;
    left: 64px;
  }
  /*  .feature-block-5 {
    right: -29%;
  } */
   .feature__icon__content p {
    font-size: 17px;
  }
   .empowering__subHeading {
    
    font-size: 36px;
  }
   .empowering__future__para p {
    text-align: justify;
    font-size: 16px;
  }
   .excel__rise__picture__block {
    margin-top: 0px;
    max-width: 56%;
  }
   .top-margin {
    margin-top: 83px;
  }
   .bottom-margin {
    margin-bottom: 100px;
    margin-left: -25px;
  }
   .ct__sholarship__heading__logo {
    max-width: 80%;
  }
   .scholarship__bottom__heading h3 {
    
    font-size: 26px;
  }
   .tie__up__image__inner img {
    position: absolute;
    top: 24%;
    left: 29%;
    width: 470px;
  }
   .exp__beyond__paraText p {
    margin-top: 21px;
    
    font-size: 16px;
  }
   .feature-block-5 .feature__icon__content p {
    margin-left: 12px;
    font-size: 18px;
  }
   .feature-block-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -68%;
  }
   .feature__icon__content {
    /* margin-right: 29px; */
    margin-right: 18px;
  }
   .feature__icon__content-3 {
      margin-right: 48px !important;
   }
   .why__choose__ct__bottom__section {
    margin-left: 6rem;
  }
   .feature-block-6 {
    position: absolute;
    right: 9%;
    left: unset !important;
  }
   .feature-block-3 {
    position: absolute;
    left: -68px;
  }
   .why__choose__us__right__icons::after {
    margin-right: 60px;
  }
  /* .why__choose__rungta__picture.text-center {
    margin-left: -74px;
  } */
   .why__choose__us__left__icons::before {
    margin-left: 0px;
  }
   .coe_sec {
    height: 100%;
  }
   .placement-stats {
    height: 283px;
    padding: 45px 20px 80px;
    background-size: cover;
  }
   .placement-stats-bottom {
    margin-top: 0;
  }
   .section-title {
    font-size: 28px;
    padding-top: 0px;
    padding-bottom: 17px;
  }
   .stat-item h3 {
    font-size: 40px;
  }
   .stat-item p {
    font-size: 16px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 18px;
  }
   .testimonial__section__top__content {
    padding: 20px 0px;
  }
   .scholarship__block__picture img {
    max-width: 70% !important;
    width: 100%;
    height: auto;
  }
   .scholarship__block__picture {
    /* margin-top: 144px; */
    position: absolute;
    bottom: 7px;
  }
   .ct__scholarship__section .apply__now__btn {
    margin-top: 0;
    margin-bottom: 29ox;
  }
   .international__tie__ups__para p {
    padding: 0px;
  }

   .testimonial-section-bottom-line h2 {
    margin-top: 10px;
  }
   .testimonial__section {
    height: 100%;
  }
  /*  .feature__icon__block {
    margin-left: -35px;
  } */
   .page__banner {
    background-position: left;
    height: 580px;
  }
}
@media screen and (min-width: 1301px) and (max-width: 1400.98px) {
   .page__banner {
    height: 600px;
  }
   .international__Mous {
    height: 755px;
  }
   .slick-dots {
    margin-top: 10px;
  }
   .why__choose__ct__bottom__section {
    margin-top: 3.5rem;
  }
   .foregin__deligates__bottom {
    margin-top: 2.5rem;
  }
  .program__offered__section__bottom.mt-5 {
      margin-top: 2rem !important;
  }
   .why__choose__ct__bottom {
    margin-top: 1rem;
  }
   .top__recruiters {
    height: 490px;
  } 
}
@media screen and (max-width: 1200px) {
  .rs-detail-item_all {
    width: auto;
  }
}
@media screen and (min-width: 1600px) {
   .empowering__future__para p {
    text-align: justify;
    font-size: 21px;
  }
   .scholarship__block__picture img {
    max-width: 88% !important;
    width: 100%;
}
 .scholarship__block__picture {
  position: absolute;
  bottom: 0px !important;
}
 .coe-heading p {
  font-size: 18px;
  line-height: 1.6rem;
}
 .feature__picture__outer__circle.feature-block-1{
  margin-left: 15px;
}
   .picture__box__1::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 72%;
    height: 72%;
    background-color: #ffda47;
    border-radius: 27px;
  }
   .exp__beyond__paraText p {
    font-size: 20px;
  }
   .slick-dots {
    margin-top: 25px;
}
   .exp__beyond__headingText h3::after {
    content: "";
    position: absolute;
    background: url("../images/exp-beyond/exp-beyond-line.png") no-repeat center;
    background-size: cover;
    left: 0;
    bottom: 0;
    width: 82%;
    height: 3px;
  }
   .picture__box__2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 72%;
    height: 72%;
    background-color: #ffda47;
    border-radius: 27px;
  }


   .excel__rise__picture__block {
    max-width: 70%;
  }
   .placement-stats {
    background-size: cover;
    height: 355px;
    padding: 45px 20px 80px;
    margin-bottom: 3px;
  }
   .scholarship__block__picture img {
    max-width: 83%;
    width: 100%;
    height: auto;
  }
   .scholarship__block__picture {
    margin-top: 51px;
    position: absolute;
    bottom: 0;
  }
   .tie__up__image__inner img {
    position: absolute;
    top: 24%;
    left: 34%;
    width: 470px;
  }
   .page__banner {
    height: 750px;
  }
   .feature-block-3 {
     position: absolute;
     left: -19%;
     bottom: -3px;
   }
   .feature-block-2 {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       left: -70%;
   }
   .feature-block-1 {
    width: 100% !important;
    position: relative;
    right: 5%;
  }
   .feature-block-1 .feature__icon__content {
    margin-right: 10px;
    transition: all 0.5s ease-in-out;
  }
   .feature__block__content p {
    font-size: 18px;
  }
   .life-pu-description p {
    font-size: 20px;
  }
   .top__recruiters .slick-slide img {
    display: block;
    width: 210px;
    margin: 0 auto;
  }
   .ranking__section {
    height: 975px;
  }
   .top__recruiters {
    height: 535px;
  }
   .ranking-img {
    max-width: 72%;
    width: 100%;
  }
   .ranking-nirf-img {
    max-width: 82%;
    width: 100%;
    height: auto;
  }
   .top__ranking__section__right .ranking-right-img {
    max-width: 55%;
    width: 100%;
    height: auto;
  }
   .top-margin {
    margin-top: 55px;
  }
   .bottom-margin {
    margin-bottom: 55px;
    margin-left: -20px;
  }
   .feature__box__3 {
    margin-left: -15px;
  }
   .feature__block__picture {
    width: 155px;
    height: 155px;
  }
   .header__logo__block img {
    max-width: 198px;
    width: 100%;
  }
   .header__logo__other img {
    max-width: 125px;
    width: 100%;
  }
   .right-pad {
    padding-right: 10px;
  }
   .header__right__section .header__logo__block img {
    width: 100%;
    max-width: 90%;
  }
   .lab-text {
    font-size: 20px;
  }
  .mobile-hide {
    display: none;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    font-size: 32px;
  }
   .gallery__section .gallery__section__top__headingText p {
    font-size: 20px;
  }
   .marquee {
    font-size: 18px;
  }
   .feature__icon__content-3 {
    margin-right: 25px !important;
  }
}
@media screen and (min-width: 1800px) {
   .offered__programs__list > li {
    font-size: 16px;
  }
   .rankingthumb-content__content {
    font-size: 16px;
  }
   .offered__programs__list > li i {
    margin-top: 3px;
  }
   .slick-dots {
     margin-top: 20px;
  }
   .top__recruiters {
     background: url(../images/top-recruiters/top-recruiters-bg.png) no-repeat bottom;
     height: 810px;
  }
   .feature-block-6 .feature__icon__content p {
    margin-left: 50px;
  }
   .empowering__future__para p {
    text-align: justify;
    font-size: 23px;
  }
   .why__choose__CT__ .feature-block-1{
    left: -4%;
  }
   .scholarship__block__picture img {
    max-width: 100% !important;
    width: 100%;
    height: auto;
  }
   .empowering__future__heading h3 {
    font-size: 34px;
  }
  .ranking-section__top-rankings--slider .slider-nav {
    width: 755px;
    margin: auto;
}
   .page__banner__apply__btn .apply__now__btn {
    font-size: 20px;
  }
   .page-sub-heading h3 {
    font-size: 28px;
  }


   .experience-beyond-stats {
    display: block;
    height: 100%;
    margin-right: 3rem;
}
 .feature__picture__outer__circle.feature-block-1{
  width: 93% !important;
  margin-left: 15px;
}
   .placement__pathways__content h3 {
    
    font-size: 28px;
  }
   .feature__block__picture {
    width: 175px;
    height: 178px;
  }
   .feature__block__content p {
    font-size: 20px;
  }
   .offered__programs__list > li > a {
    font-size: 18px;
  }
   .diff__prgrams__list__box .progeam__list__heading h3 {
    font-size: 24px;
  }
   .scholarship__block__picture img {
    max-width: 86%;
    width: 100%;
    height: auto;
  }
   .scholarship__block__picture {
    position: absolute;
    bottom: 3px !important;
}
   .ct__scholarship__section {
    height: 900px;
  }
   .scholarship__bottom__heading p {
    
    line-height: 1.9rem;
    font-size: 22px;
  }
   .tie__up__image__inner img {
    position: absolute;
    top: 24%;
    left: 36%;
    width: 470px;
  }
   .international__tie__ups__heading h3 {
    font-size: 32px;
  }
   .international__tie__ups__para p {
    text-align: center;
    font-size: 22px;
    padding: 0 80px;
    line-height: 2rem;
    width: 80%;
    margin: 15px auto 90px;
  }
   .life-pu-description p {
    font-size: 24px;
    line-height: 2.2rem;
  }
   .exp__beyond__paraText p {
    font-size: 26px;
  }
   .exp__beyond__headingText h3 {
    position: relative;
    font-size: 28px;
  }
   
   .testimonial-section-bottom-line h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 2.4rem;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    h3 {
    font-size: 26px;
  }
  
    .testimonial__section__top__content
    .testimonial__section__info
    p {
    
    font-size: 30px;
  }
   .testimonial__section__heading h3 {
    font-size: 34px;
  }
   .testimonial__section__heading p {
    font-weight: 400;
    font-size: 22px;
  }
   .testimonial__section__heading h3 {
    font-size: 34px;
  }
   .gallery__section .gallery__section__top__headingText h3 {
    font-size: 34px;
  }
   .gallery__section .gallery__section__top__headingText p {
    
    font-size: 22px;
  }
   .top-heading h2 {
    font-size: 36px;
  }
   .why__choose__ct__headingText h3 {
    font-size: 34px;
  }
   .feature__icon__content p {
    font-size: 24px;
    text-align: center;
  }
   .feature-block-5 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40%;
  }
   .feature-block-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -65%;
  }
   .feature-block-3 {
     position: absolute;
     left: -43%;
     bottom: 0px;
  }
   .feature-block-4 {
      left: 2px; 
  }
   .feature-block-6 {
    position: absolute;
    right: -6px;
    bottom: 0;
  }
   .feature__icon__content {
    margin-right: 16px;
  }
   .feature__icon__content-3 {
    margin-right: 75px !important;
  }
  
   .slider .item__slider__block img {
    display: block;
    width: 235px;
    margin: 0 auto;
  }
   .page__banner {
    height: 870px;
  }
   .state-of-art-labs-headingText h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
   .state-of-art-labs-headingText p {
    font-size: 24px;
  }
   .life-pu-description {
    padding: 20px 35px;
  }
   .top__recruiters .slick-slide img {
    display: block;
    width: 235px;
    margin: 0 auto;
  }
   .lab-text {
    font-size: 28px;
  }
   .excel__rise__picture__block {
    max-width: 80%;
    width: 100%;
  }
   .rankingthumb-content__content {
    font-size: 19px;
}
 .rankingthumb-content span{
  font-size: 19px;
}
}
@media screen and (min-width: 1300px) and (max-width: 1400px) {
   .excel__rise__picture__block {
    margin-top: 9px;
    max-width: 59%;
  }
   .feature__picture__outer__circle.feature-block-1{
    margin-left: 25px;
  }
   .rise-excel-section-top {
    width: 76%;
  }
   .scholarship__block__picture {
    position: absolute;
    bottom: 7px;
  }
   .scholarship__block__picture img {
    max-width: 74% !important;
    width: 100%;
  }
   .top-margin {
    margin-top: 94px;
  }
   .bottom-margin {
    margin-bottom: 87px;
    margin-left: -9px;
  }
   .exp__beyond__paraText p {
    margin-top: 36px;
    font-size: 19px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1500px) {
   .scholarship__block__picture {
    position: absolute;
    bottom: 7px;
  }
   .scholarship__block__picture img {
    max-width: 85%;
    width: 100%;
  }
   .excel__rise__picture__block {
    max-width: 60%;
    width: 100%;
    height: auto;
  }
   .feature-block-1 {
    position: relative;
    right: 15px;
  }
   .feature-block-2 {
    position: absolute;
    left: -156px;
  }
   .feature-block-3 {
    left: -50px;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1600px) {
   .scholarship__block__picture {
    position: absolute;
    bottom: 0px !important;
  }
   .tie__up__image__inner img {
    position: absolute;
    top: 24%;
    left: 33%;
    width: 470px;
}

   .why__choose__CT__ .feature-block-1 {
    width: 100% !important;
  }
  /*  .feature-block-1 {
    position: relative;
    right: 15px;
  } */
   .feature-block-2 {
    position: absolute;
    left: -154px;
  }
   .feature-block-3 {
    position: absolute;
    left: -50px;
    bottom: 0px;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1480px) {
   .feature-block-1 {
    /* width: 94% !important; */
    position: relative;
    right: 17px;
  }
   .why__choose__ct__content {
    margin-left: 3rem;
}
   .feature-block-2 {
    position: absolute;
    left: -135px;
  }
   .feature__icon__content-2 {
      margin-right: 15px;
   }
   .feature-block-3 {
    position: absolute;
    left: -50px;
    bottom: 0px;
  }
   .tie__up__image__inner img {
    left: 32%;
    width: 470px;
  }
   .feature-block-5 {
    position: absolute;
    right: -38%;
  }
}

