/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Raleway", sans-serif;
  --nav-font: "Nunito", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bbd36;
  /* 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: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #1bbd36;
  /* 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: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bbd36;
  /* 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: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Open Sans", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ffcf06;
  text-decoration: none;


}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: "Merriweather", serif;
  color: #b71a34;
}

/* 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: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 86px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: #000;
    padding: 18px 15px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;

    font-weight: 600;
    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: #ffc107;
  }

  .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: #ffc107;
  }

  .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: "Open Sans", sans-serif;
    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: #ffc107;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ffc107;
    color: #ffc107;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffc107;
    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: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.footer .footer-about p {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links ul {

  padding: 0;
  margin: 0;
}

.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: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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: 25px 0;
  position: relative;
  display: none;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/




.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 {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

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

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

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: "Open Sans", sans-serif;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  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;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

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

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: open sans-serif;
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

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

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

a.text-white:hover {
  color: #ffc107 !important;
  transition: color 0.3s ease;
}

.partnership-carousel-section {
  padding: 40px 0;
  text-align: center;
}

.section-title {


  font-weight: 700;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
  cursor: pointer;
}

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

.iagi-intro-section {
  background-color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.iagi-intro-section h5 {
  color: #333;
  font-weight: 600;
  font-size: 1.25rem;

  margin: 0 auto;
}

.iagi-cards-section {
  background-color: #fff;
  padding: 60px 0;
  width: 100%;
}

.iagi-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.iagi-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.iagi-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.iagi-card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #b71a34;
  line-height: 1.4;
}

.iagi-card a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 767px) {
  .iagi-card {
    padding: 20px 15px;
  }
}

.counter-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  max-width: 1493px;
}

.counter-box {
  padding: 30px;
  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-icon {
  font-size: 40px;
  color: #b71a34;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.counter-title {
  font-size: 18px;
  color: #b71a34;
  margin-top: 10px;
}

.row {
  display: flex;
  flex-wrap: wrap;

}

.col-3 {
  flex: 1 1 23%;
  min-width: 250px;
  background: #fafafa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.col-3 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.col-3 h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #b71a34;
}

.col-3 p {
  font-size: 0.9rem;
  line-height: 1.4;
  flex-grow: 1;
  color: #444;
}

.page-layout {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

/* Sidebar / Vertical Menu */
.sidebar {

  background: #f9f9f9;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #b71a34;
  border-bottom: 2px solid #b71a34;
  padding-bottom: 8px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  display: block;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  color: #b71a34;
  background-color: #f0f0f0;
}

/* Main content */
.main-content {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
}

.main-content h3 {
  color: #b71a34;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

/* Accordion styles */
.accordion-section {
  border: 0px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
}

.accordion-header {
  background: #e5f0ff;
  cursor: pointer;
  padding: 14px 20px;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.accordion-content {
  padding: 15px 25px;
  background: white;
  display: none;
}

.accordion-content ul {
  margin: 0;
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 6px;
}

.accordion-section.active .accordion-content {
  display: block;
}

.accordion-icons::after {
  content: "";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.accordion-section.active .accordion-icons::after {
  transform: rotate(-180deg);
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.events-container {

  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  font-family: 'Open Sans', sans-serif;
  background-color: #b71a34;
}

.event-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.event-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  color: #b71a34;
}

.event-card-content p {
  margin: 0;
  flex-grow: 1;
  text-align: justify;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .events-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.counters-section {
  background: url('https://jgu.s3.ap-south-1.amazonaws.com/JGU-Cover-Images-3-scaled-1.jpg') center center/cover no-repeat;

  padding: 70px 20px;
  font-family: 'Open Sans', sans-serif;

}

.counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;

  margin: 0 auto;
}

.counter {

  border-radius: 12px;
  flex: 1 1 220px;
  padding: 40px 30px;
  box-shadow:
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff;
  text-align: center;
  color: #fff;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.counter:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 20px #fff,
    0 0 40px #fff,
    0 0 60px #fff;
}

.counter-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #fff;
  filter: drop-shadow(0 0 5px #fff);
}

.counter-number {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-shadow: 0 0 8px #fff;
}

.counter-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .counters {
    gap: 25px;
  }

  .counter {
    flex: 1 1 100%;
    padding: 35px 25px;
  }

  .counter-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
  }

  .counter-number {
    font-size: 3.5rem;
  }

  .counter-text {
    font-size: 1.6rem;
  }

}

.description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #141414;

  margin: 0 auto 0px;
  line-height: 1.6;
  text-align: left;

}

.cards-section {
  background: linear-gradient(135deg, #b71a34 0%, #b71a34 100%);
  padding: 50px 20px 70px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;

  margin: 0 auto;
  flex-wrap: wrap;
}

.card-link {
  background: rgba(255 255 255 / 0.15);
  border-radius: 16px;
  flex: 1 1 260px;
  padding: 30px 25px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.card-link:hover,
.card-link:focus {
  background: rgba(255 255 255 / 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
  outline: none;
}

.card-link br {
  display: none;
}

/* Responsive */

.card-link {
  flex: 1 1 100%;
  padding: 25px 20px;
}

.card-link br {
  display: inline;
}


.iagi-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;


  font-family: 'Open Sans', sans-serif;
  color: #000;
}

.iagi-image {
  flex: 1 1 45%;
  max-width: 45%;
}

.iagi-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: block;
}

.iagi-content {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iagi-content h2 {
  color: #b71a34;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.iagi-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  /* Added justification */
  text-justify: inter-word;
  /* Better justification for some browsers */
}

.iagi-content a {
  font-weight: 600;
  color: #b71a34;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  width: fit-content;
}

.iagi-content a:hover,
.iagi-content a:focus {
  border-color: #b71a34;
  outline: none;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .iagi-section {
    flex-direction: column;
    gap: 25px;
  }

  .iagi-image,
  .iagi-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.footer {
  background-color: #1a1a1a;
  background-image: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
    url('https://jgu.edu.in/front/assets/img/footer.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ccc !important;
  font-family: "Open Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  padding: 0px 39px 0px;
  margin: 0;
}

.footer-container {

  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 180px;
  min-width: 180px;
}

.campus-location {
  flex: 1 1 280px;
  min-width: 280px;
  margin-top: 47px;
}

.footer h5,
.footer h6 {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: -3px;
  padding-bottom: 26px;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
}

address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.campus-location p {
  font-size: 14px;
  margin-bottom: 10px;
}

a {
  color:#b1aeb8;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav.footer-section.quick-links a {
    color: #cccccc;
}

a:hover,
a:focus {
  color: #ffc107;
}

.btn-direction {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ffc107;
  color: #ffc107;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn-direction:hover {
  background-color: #fff;
  color: #1a1a1a;
}

ul {

  padding: 0;
  margin: 0;

}



.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  border-radius: 50%;
  background-color: #ccc;
  color: #000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 12px;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.facebook:hover,
.twitter:hover,
.linkedin:hover,
.youtube:hover,
.instagram:hover {
  background-color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  font-size: 18px;
  margin-top: 30px;
 font-family: "Open Sans", sans-serif;
  list-style: none !important;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }


  .social-icons {
    justify-content: flex-start;
  }
}

/* Container */
.container {
  max-width: 1600px;
  gap: 0.5rem;
  padding: 0 2rem;
}

/* Sidebar */
.sidebar {
  flex: 0 0 280px;


  padding: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  height: fit-content;
  transition: transform 0.3s ease;
}

.sidebar h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #b71a34;
  user-select: none;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #b71a34;
  padding-bottom: 0.3rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 1.3rem;
}

.sidebar ul li a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #4a4a4a;
  display: block;
  padding: 0.35rem 0;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.sidebar ul li a:hover,
.sidebar ul li a:focus {
  color: #b71a34;

  outline: none;
}

.sidebar ul li a.active {
  color: #b71a34;
  font-weight: 700;

}

/* Main content */
.main-content {
  flex-grow: 1;
  background: white;
  padding: 3rem;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  color: #2c2c2c;
  font-size: 1.15rem;
  transition: filter 0.3s ease;
}

.main-content h1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #b71a34;
  letter-spacing: 0.05em;
  user-select: none;
}

.main-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.main-content b {
  color: #b71a34;
  font-weight: 700;
}

.main-content a {
  font-weight: 600;
  color: #b71a34;
}

.main-content a:hover {
  color: #7a0d22;
}

/* Hamburger toggle button */
.hamburger {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 4px;
  background: #b71a34;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: row;
    padding: 0;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    padding: 3rem 2rem 2rem 2rem;
    border-left: none;
    border-right: 5px solid #b71a34;
    background: white;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 6px 6px 0;
    transform: translateX(-100%);
    z-index: 1000;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    flex-grow: 1;
    margin-left: 0;
    padding: 2rem;
    transition: filter 0.3s ease;
  }

  .main-content.dimmed {
    filter: brightness(0.7);
    pointer-events: none;
    user-select: none;
  }

  .hamburger {
    display: flex;
  }
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-left: -31px;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-body {
  padding: 3rem 2.2rem;

}

.event-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #b71a34; /* JGU theme red */
  font-weight: 600;
}

.event-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.read-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #b71a34;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-btn:hover {
  background: #921028;
}

.stats-ticker {

  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  padding: 2rem 1rem;
 font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #b71a34;
  background: #f1f1f1 !important;
  border-radius: 12px;
  user-select: none;
}

.stat-item {
  flex: 1 1 180px;
  max-width: 24%;
  text-align: center;
}

.stat-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 0.8rem;
  fill: #b71a34;
  opacity: 0.9;
  display: inline-block;
}

.stat-number {
  font-size: 2rem;
  line-height: 1;
  color: #b71a34;
  display: inline-block;
}

.stat-text {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.3rem;
  color: #444;
  min-height: 3.2rem;
}

@media (max-width: 700px) {
  .stats-ticker {
    gap: 1.8rem 2rem;
  }

  .stat-item {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (max-width: 450px) {
  .stat-item {
    flex: 1 1 100%;
  }
}

.iagi-section {
  /* max-width: 1200px; */
  margin: 3rem auto;
 font-family: "Open Sans", sans-serif;
  color: #222;
  padding:0;
  background-color: #ffffff;
  border-radius: 12px;
}

.iagi-section p.intro {
  font-weight: 400;
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 3.5rem;
  text-align: center;
  color: #444;
}

.iagi-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.iagi-link {
  background: #b71a34;
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  box-shadow: 0 6px 15px rgba(183, 26, 52, 0.3);
  text-decoration: none;
  position: relative;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  user-select: none;
  overflow: hidden;
}

/* Icon container */
.iagi-link svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: #fff;
  filter: drop-shadow(0 0 2px rgba(255 255 255 / 0.4));
  transition: transform 0.3s ease;
}

.iagi-link:hover svg,
.iagi-link:focus-visible svg {
  transform: scale(1.15);
}

.iagi-link:hover,
.iagi-link:focus-visible {
  background: #8e1428;
  box-shadow: 0 12px 30px rgba(183, 26, 52, 0.6);
  outline: none;
  transform: translateY(-6px);
  z-index: 1;
}

/* Accessibility */
.iagi-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Responsive line breaks */
.iagi-link br {
  display: none;
}

@media (max-width: 520px) {
  .iagi-link br {
    display: inline;
  }
}

.iagi-container {
  /* max-width: 1400px; */
  background-color: #b71a34;
  text-align: center;
  width: 80;
  border-radius: 12px;
}

.iagi-intro {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #fff;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.iagi-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.iagi-link {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 1.8rem;
  color: #000000;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(183, 26, 52, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.iagi-link i {
  font-size: 3.8rem;
  color: #b71a34;
  transition: color 0.3s ease;
}

.iagi-link:hover,
.iagi-link:focus-visible {
  box-shadow: 0 14px 40px rgba(183, 26, 52, 0.5);
  transform: translateY(-8px);
  outline: none;
  color: #ffffff;
}

.iagi-link:hover i,
.iagi-link:focus-visible i {
  color: #ffffff;
}


@media (max-width: 480px) {
  body {
    padding: 2rem 1rem;
  }

  .iagi-link {
    padding: 2rem 1.2rem;
    font-size: 1rem;
  }

  .iagi-link i {
    font-size: 3rem;
  }
}

.text-primary {
  color: #000 !important;
}

.partnership-carousel-section {
  background-color: #fff;
  position: relative;
  text-align: left;
}

ul.highlights.list-unstyled{margin-top: 0px;}
.swiper-wrapper {
  align-items: center;
}

/* .swiper-slide a{width: 100% !important; display: block;} */
.swiper-slide:hover {
  /* transform: scale(1.05); */
}

.partner-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;

}

.partner-card img {
  max-width: 100%;
  object-fit: contain;
}

/* Inline navigation buttons */
.partnership-carousel-section .swiper-button-prev,
.partnership-carousel-section .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #b71a34;
  color: #fff;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s;
}

.partnership-carousel-section .swiper-button-prev:hover,
.partnership-carousel-section .swiper-button-next:hover {
  background-color: #8a1426;
  transform: translateY(-50%) scale(1.1);
}

.partnership-carousel-section .swiper-button-prev {
  left: 0px;
 margin-top:0px;
}

.partnership-carousel-section .swiper-button-next {
  right: 0px;
  margin-top:0px;
}

.partnership-carousel-section .swiper-button-prev::after,
.partnership-carousel-section .swiper-button-next::after {
  font-size: 24px;
  font-weight: normal;
}

h5.headingarea {
    background: #b71a34;
    color: #ffffff !important;
    padding: 10px 15px;
    font-weight: normal !important;
}
ul.liststyle_bullet li a {
    font-weight: 400;
    color: #4a4a4a;
    display: block;
    padding: 0.35rem 10px;
    border-bottom: solid 1px #cccccc;
    border-radius: 0;
    background: #f7f7f7;
}
/* News card hover elevation and image zoom */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.news-img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Category badge */
.category-badge {
  background-color: #b71a34;
  font-weight: 600;
  font-size: 0.8rem;
  width: 70px;
  height: 24px;
}

/* Read More button */
.read-more-btn {
  background-color: #b71a34;
  border-color: #b71a34;
  color: white;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #8a1426;
  border-color: #8a1426;
  color:#ffc107;
}

/* Carousel controls inline */
#newsCarousel .carousel-control-prev,
#newsCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: #b71a34;
  border-radius: 00%;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

.iagi-text {
  font-size: 1.15rem;
  ;
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: #000;
  text-align: justify;
}

.iagi-text h2 {
  color: #b71a34;
  /* Heading color consistent with JGU theme */
  margin-bottom: 1rem;
  text-align: left;
}

.page-content {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #000;
  text-align: justify;
  font-family: "Open Sans", sans-serif;
}

.page-content h1,
.page-content h2 {
  font-weight: 700;
  font-family: "Merriweather", serif;
}

.page-content img {
  transition: transform 0.3s ease;
}

.page-content img:hover {
  transform: scale(1.05);
}

.page-content h5 {
  color: #b71a34;
}

.page-content p.fst-italic {
  font-style: italic;
  color: #555;
}

.hero-section {
  background: url('images/exchange-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.masonry-gallery img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}

.testimonial-card h5 {
  color: #b71a34;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: #b71a34;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-fluid {
  max-width: 100%;

  height: 650px;
}

/* Hero Section */
.hero {
  background: url('https://jgu.edu.in/internationaloffice/wp-content/uploads/2024/02/JGU-BG1.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.btn-primary {
  background-color: #b71a34;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #8a0f25;
}

/* Swiper Slider */
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 20px 0;
}

.swiper-slide img {
  width: 100%;
  border-radius: 12px;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 20px;
}
li.dropdown ul li {
    margin-bottom: 0;
    border-bottom: solid 1px #efefef;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
margin-bottom: 25px;
border: solid 1px #ececec;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card h5 {
  color: #b71a34;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

h2 {
  color: #b71a34;
  font-weight: 700;

  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: none;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #b71a34, #e53935);
  margin-top: 8px;
  border-radius: 2px;
}



.btn-brochure {
  background: linear-gradient(90deg, #b71a34, #e53935);
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.btn-brochure:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Gallery */
.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Partner Cards */
.partner-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
  font-weight: 600;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;;
  border: solid 2px #cccccc;
}

.partner-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
  color: #b71a34;
}

.programmes-section {
  padding: 80px 20px;
  background-color: #fff;
}

.row-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.programme-card {
  flex: 1 1 45%;
  min-width: 250px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 20px 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programme-card:hover {
  transform: translateY(4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.programme-title, .programme-title a {
  text-decoration: none;
  color: #b71a34;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  display: inline-block;
}

.programme-description {

  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.programme-link a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;

}
p.programme-link{
  margin-bottom: 0;;
}
.programme-link a:hover {
  color: #7a0f21;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .programme-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .programme-card {
    flex: 1 1 100%;
  }
}

/* General Styles */
.open-house-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.open-house-section h4 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #b71a34;
  margin-bottom: 10px;
}

/* Session Cards */
/* .session-types .session-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 45%;
  transition: transform 0.3s, box-shadow 0.3s;
} */
.session-types .session-card {
  min-width: 250px;
    background-color: rgb(255, 255, 255);
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
    flex: 1 1 45%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(224, 224, 224);
    border-image: initial;
    padding: 20px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.session-types .session-card h4{font-size: 24px; font-weight: 600;}
.session-types .session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Carousel Styles */
.open-house-carousel .swiper-slide img {
  width: 100%;
  height: 220px;
  /* object-fit: cover; */
  border-radius: 12px;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s;
}

.open-house-carousel .swiper-slide img:hover {
  transform: scale(1.05);
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #b71a34;
  top: 45%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

/* Heading */
.welcome-heading {
  color: #b71a34;
  font-weight: 700;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

/* Paragraphs */
.welcome-text p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Quick Links Cards Grid */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* Individual Card */
.quick-card {
  background: linear-gradient(135deg, #fff, #fdfdfd);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.quick-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card Icons */
.quick-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Card Titles */
.quick-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #b71a34;
}

/* Card Links */
.quick-card p a {
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-card p a:hover {
  color: #b71a34;
}

/* General */
.jgu-dean-advanced {
  font-family: "Open Sans", sans-serif;
}

.dean-advanced-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dean-advanced-card:hover {
  transform: translateY(-5px);
}

/* Left Panel */
.profile-left {
  flex: 0 0 250px; /* fixed width for left panel */
  padding: 30px 20px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left align content */
  gap: 15px;
}

.profile-img-border {
  width: 100%;
  padding: 5px;
  background: linear-gradient(135deg, #b71a34, #ff4d6d);
  border-radius: 10px; /* subtle rounding */
}

.profile-img-border img {
 width: 250px;
  height: 250px;
  display: block;
  border-radius: 5px; /* slightly rounded corners */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-img-border img:hover {
  transform: scale(1.05);
}

.profile-left h2 {
  color: #b71a34;
  font-size: 22px;
  margin: 0;
  font-weight: 600;
}

.profile-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Right Panel */
.profile-right {
  flex: 1;
  padding: 30px 20px;
}

.profile-right h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.profile-right p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.position {
  font-size: 14px;
  color: #555;
  font-weight: bold;
}

/* Right Panel */
.profile-right {
  flex: 2;
  padding: 40px 30px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #b71a34;
  color: #fff;
}

.tab-content {
  display: none;
  font-size: 18px;
  line-height:
    1.6;
  color: #333;
  font-family:"Open Sans", sans-serif;
}

.tab-content.active {
  display: block;
}

/* Horizontal Timeline */
.timeline-horizontal {
  overflow-x: auto;
  padding: 20px 0;
}

.timeline-wrapper {
  display: flex;
  gap: 30px;
}

.timeline-item {
  flex: 0 0 250px;
  background: #f9f9f9;
  border-top: 4px solid #b71a34;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform:
    translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.year {
  font-weight: bold;
  color: #b71a34;
  display: block;
  margin-bottom: 10px;
}


/* Publications */
ul {
/* margin-top: -160px;*/
}

ul li {
  margin-bottom: 10px;
    
}

nav.footer-section.quick-links ul {
  list-style: none;
}

ul.list-unstyled li {
  border-bottom: solid 1px #ececec;
}

.sidebar-card ul li a:hover {
  background-color: rgb(244, 244, 244);
  transform: translateX(0px) !important;
  border-radius: 0;
  color: #b71a34;
}

nav.iagi-links {
  padding: 0 35px;
}

/* Responsive */
@media (max-width: 992px) {
  .dean-advanced-card {
    flex-direction: column;
  }

  .profile-left {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .profile-right {
    padding: 30px 20px;
  }

  .timeline-item {
    flex: 0 0 80%;
  }
}

.bg-light {
  --bs-bg-opacity: 1;
    background: rgb(241, 241, 241) !important;
    border-radius: 12px;
}

/* ===== Horizontal Timeline ===== */
.timeline-horizontal {
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.timeline-wrapper {
  display: flex;
  gap: 25px;
}

.timeline-item {
  flex: 0 0 250px;
  background: #f9f9f9;
  border-top: 4px solid #b71a34;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 220px;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.year {
  font-weight: bold;
  color: #b71a34;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== Publications ===== */
#publications ul {
  margin-top: 15px;
  padding-left: 20px;
  list-style-type: disc;
}

#publications ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .dean-advanced-card {
    flex-direction: column;
  }

  .profile-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 30px 20px;
  }

  .profile-right {
    padding: 30px 20px;
  }

  .timeline-item {
    flex: 0 0 80%;
  }
}

@media (max-width: 576px) {
  .profile-left img {
    width: 130px;
    height: 130px;
  }

  .profile-left h2 {
    font-size: 20px;
  }

  .position {
    font-size: 13px;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .timeline-item {
    flex: 0 0 90%;
  }
}

.team-banner .banner-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
  /* display: none;  <-- remove this */
}

/* Breadcrumb inside banner */
.breadcrumb-on-banner .breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  display: flex; /* instead of none */
}

.breadcrumb-on-banner .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: white;
  padding: 0 10px;
  font-weight: 600;
}

.breadcrumb-on-banner .breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-on-banner .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-on-banner .breadcrumb-item.active {
  color: white;
}

/* Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;

}

.sidebar-title {
    font-size: 1.59rem;
    font-weight: 600;
    background: #b71a34;
    color: #ffffff;
    padding: 12px;
    margin-bottom: 0px !important;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  margin-bottom: 0.1rem;
}

.sidebar-card ul li a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.sidebar-card ul li a:hover {
  background-color: #f4f4f4;
  transform: translateX(3px);
}

/* Team Cards */
.team-card {
  cursor: pointer;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.team-card:hover {

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.team-card-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px;
}

.team-card:hover .social-overlay {

}

.social-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-overlay a.linkedin:hover {
  background: #0077b5;
  color: #fff;
}

.social-overlay a.email:hover {
  background: #b71a34;
  color: #fff;
}

.team-email {
  font-size: 0.85rem;
  word-break: break-all;
  margin-top: 5px;
}

.team-card-info {
  padding: 1rem;
  text-align: center;
}

.team-card-info h5 {
  font-size: 1.40rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #222;
  transition: color 0.3s;
}

.team-card:hover .team-card-info h5 {
  color: #b71a34;
}

.team-card-info .designation {
  font-size: 1rem;
  font-weight: 400;
  color: #141414;
}

.team-card-info .education {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.3rem;
}

.team-card-info .bio {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
}

.dropdown-item.active, .dropdown-item:active {
 color: #fff;
    text-decoration: none;
    background-color: #eff3f7 !important;
}
 
    
 /* Floating Buttons */
#enquireToggle {
    bottom: 20px;
    right: 20px;
    z-index: 1051;
    padding: 10px 20px;
}

#enquireToggleMobile {
    bottom: 20px;
    left: 20px;
    z-index: 1051;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
#enquireOverlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
}

/* Sidebar */
#enquireSidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
    z-index: 1052;
    top: 82px;
}



.carousel {
    position: relative;
  margin-left: 0px !important; /

}
.filterbox {
    padding: 15px 15px;
    background: #efefef;
    margin-bottom: 25px;
    border-radius: 10px;;
}
button.btn.btn-sm.btn-primary {
    padding: 5px 15px;
}
.filterbox h4 {
    font-weight: 600;
    font-size: 24px;
}
.swiper-slide.text-center img {
    width: 100%;
}

span.event-dot {
    color: #ffc107 !important;
    background-color: #ffc107 !important;
}
.searchform_events {
    padding: 15px;
    background: #ececec;
    margin-bottom: 30px;
    border-radius: 8px 8px 0 0;
}
.select2-container--default .select2-results>.select2-results__options{
  max-height: 450px !important;
}

nav.breadcrumb-on-banner.mt-2 {
    font-size: 35px;}
  
      col-lg-9-full {
    width: 1000%;
    }

.page-content p a {
    color: #000000;
    text-decoration: underline;
}
section.page-banner{border-radius: 0px !important;}
section.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: rgb(19 19 19 / 29%);
}
.sidebar-card h5.sidebar-title {
    background: #b71a34;
    font-size: 20px;
}
.sidebar-card h5 {
    padding: 10px;
    background: #848484;
    color: #FFFFFF;
}
.accordion-content ul {
    margin-left: 20px;
}
ul.liststyle {
    margin-left: 25px;
}
.swiper.programs-swiper.swiper-initialized.swiper-horizontal .swiper-slide{
  background:#fff;
  padding: 30px;
 text-align: center;
  border-radius: 8px;
  min-height: 120px;
  border: solid 1px #b71a34;
}
.swiper.programs-swiper.swiper-initialized.swiper-horizontal .swiper-slide h5{
  font-size: 22px;
  color: #141414;
}
.swiper.programs-swiper.imp .swiper-pagination{
  position: relative !important;
  padding-top: 20px;
}