@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');
@import 'bootstrap/dist/css/bootstrap.min.css';
html {
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Adjust this value based on your header height */
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	background-color: #fff;
	min-width: 320px;
}

img {
	max-width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}

img.loaded {
	opacity: 1;
}

section {
	padding: 50px 0;
	position: relative;
}

section[id] {
	scroll-margin-top: 80px; /* Adjust this value based on your header height */
}

/* Active section highlight */
section[id]:target {
	animation: highlight 1s ease-out;
}

@keyframes highlight {
	0% {
		background-color: rgba(0, 123, 255, 0.1);
	}
	100% {
		background-color: transparent;
	}
}

/* Active nav link */
.navbar-nav .nav-link.active {
	color: #007bff !important;
	font-weight: 500;
}

.navbar-nav .nav-link.active::after {
	transform: scale(1);
}

a {
	color: #111;
}

a:hover {
	color: #555;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-left: 5px;
    letter-spacing: -0.5px;
}

.main-menu {
    margin-left: 40px;
}

.main-menu .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #dc3545;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-menu .nav-link:hover {
    color: #dc3545;
}

.main-menu .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.language-selector .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
}

.language-selector .dropdown-toggle:hover {
    background: none;
}

.language-selector .dropdown-menu {
    min-width: 100%;
    margin-top: 0;
    padding: 0;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    background-color: #fff;
}

.language-selector .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
}

.language-selector .dropdown-item:hover {
    background: none;
}

.language-selector .flag-icon {
    width: 24px;
    height: 18px;
    transition: transform 0.3s ease;
}

.language-selector .dropdown-item:hover .flag-icon {
    transform: scale(1.1);
}

.language-selector .dropdown-toggle::after {
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991.98px) {
    /* Header adjustments */
    .navbar-brand {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 35px;
    }

    .main-menu {
        margin-left: 0;
        margin-top: 15px;
    }

    .nav-right {
        margin-top: 15px;
        justify-content: flex-start;
    }

    /* Company section adjustments */
    .company-section, .founder-section {
        padding: 40px 0;
    }

    .company-content, .founder-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .company-photo, .founder-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto 30px;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    /* Video section adjustments */
    .video-card {
        margin-bottom: 30px;
    }

    .video-details {
        padding: 15px;
    }

    /* Footer adjustments */
    .footer .col-md-3 {
        margin-bottom: 30px;
    }

    .footer-icons {
        justify-content: center;
    }

    .founder-photo {
        width: 350px;
        height: 350px;
        padding: 15px;
    }

    .language-selector {
        width: 100%;
        text-align: center;
    }

    .language-selector .dropdown-menu {
        width: 100%;
        text-align: center;
        position: static;
        float: none;
        background: none;
        box-shadow: none;
    }

    .language-selector .dropdown-item {
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }
    
    .company-section {
        padding: 60px 0;
    }
    
    .company-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
    
    .video-card img {
        height: 200px;
    }
    
    .video-card h3 {
        font-size: 1.2rem;
    }
    
    .video-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    /* Header adjustments */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 30px;
    }

    .main-menu .nav-link {
        padding: 0.5rem 0;
    }

    /* Section title adjustments */
    .section-title {
        font-size: 1.8rem;
    }

    /* Company and founder sections */
    .company-description, .founder-description {
        font-size: 1rem;
    }

    .company-photo, .founder-photo {
        width: 200px;
        height: 200px;
    }

    /* Video section */
    .video-wrapper {
        margin-bottom: 15px;
    }

    .video-details h4 {
        font-size: 1.1rem;
    }

    .video-details p {
        font-size: 0.9rem;
    }

    /* Footer adjustments */
    .footer h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-icons a {
        font-size: 18px;
        margin-right: 10px;
    }

    .founder-photo {
        width: 300px;
        height: 300px;
    }

    .founder-activities {
        padding: 40px 0;
    }
    
    .article-item {
        margin-bottom: 20px;
    }
    
    .article-item h3 {
        font-size: 1.1rem;
    }
    
    .article-item p {
        font-size: 0.9rem;
    }
    
    .toggle-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .company-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .video-card {
        margin-bottom: 15px;
    }
    
    .video-card img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    /* Header adjustments */
    .navbar-brand {
        font-size: 1rem;
    }

    .logo-img {
        height: 25px;
    }

    /* Section adjustments */
    .section-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .company-photo, .founder-photo {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
    }

    /* Content adjustments */
    .company-description, 
    .founder-description, 
    .article-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 15px;
    }

    /* Video section */
    .video-card {
        margin-bottom: 20px;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-details h4 {
        font-size: 1rem;
    }

    /* Button adjustments */
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Footer adjustments */
    .footer .col-6 {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-icons {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .footer-icons a {
        font-size: 24px;
    }

    /* Navigation adjustments */
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .nav-link {
        padding: 12px 15px;
        border-radius: 6px;
    }

    .nav-link:active {
        background-color: rgba(0,0,0,0.05);
    }
}

/* Additional responsive utilities */
@media (max-width: 991.98px) {
    .text-md-center {
        text-align: center !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* Mobile menu improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 0.5rem 1rem;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover {
        background-color: #f8f9fa;
    }
}

/* Language switcher mobile adjustments */
@media (max-width: 991.98px) {
    .language-selector {
        width: 100%;
        margin-top: 15px;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}

#main {
	float: left;
	background-color: #f6f6f6;
	border-top: 2px solid silver;
	color: #484848;
	font-size: 1.3em;
  }
  
  @media (min-width: 1401px) {
	#main {
	  padding: 100px 20%;
	  width: 60%;
	}
  }
  
  @media (max-width: 1400px) {
	#main {
	  padding: 100px 10%;
	  width: 80%;
	}
  }
  
  @media (max-width: 700px) {
	#main div {
	  width: 98%!important;
	  margin-bottom: 20px;
	}
  }
  
  #main div {
	width: 48%;
	margin-right: 2%;
	float: left;
  }
  
  #main h2 {font-size: 3em}
  #main span {color: #a0a0a0}

/* Carousel */
.my-carousel {
	padding: 0;
}

.my-carousel .carousel-item {
	display: flex;
	max-height: 500px;
}

.my-carousel .carousel-item img {
	object-fit: cover;
}
/* Carousel */

/* Product card */
.product-card {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06);
	transition: all .3s;
}

.product-card:hover {
	box-shadow: 0 14px 30px -15px rgba(0, 0, 0, 0.75);
}

.product-thumb a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	padding: 20px;
}

.product-thumb img {
	max-width: 100%;
	max-height: 100%;
}

.product-details {
	padding: 20px;
}

.product-details h4 a {
	font-weight: 500;
	display: block;
	height: 60px;
	overflow: hidden;
	text-decoration: none;
}

.product-details p {
	font-size: 15px;
	margin-bottom: 20px;
	color: #999;
	height: 44px;
	overflow: hidden;
}

.product-bottom-details {
	overflow: hidden;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.product-price {
	font-size: 18px;
	color: #ee6e73;
	font-weight: 600;
}

.product-price small {
	color: #ccc;
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 5px;
}

.product-links a {
	font-size: 20px;
	margin-left: 10px;
}
/* Product card */

/* Footer */
.footer {
	background-color: #343434;
}

.footer h4 {
	color: #ccc;
	text-transform: uppercase;
	font-size: 16px;
	border-bottom: 1px solid #666;
	padding-bottom: 3px;
}

.footer a {
	text-decoration: none;
	transition: all .3s;
	position: relative;
}

.footer a:hover {
	color: #fff;
	padding-left: 5px;
}

.footer a, .footer li {
	color: #c8c8c8;
}

.footer li a {
	display: block;
	padding: 5px 0;
}

.footer li a::before {
	content: '→';
	margin-right: 8px;
	opacity: 0;
	transition: all 0.3s ease;
}

.footer li a:hover::before {
	opacity: 1;
}

.footer li a i {
    transition: transform 0.3s ease;
}

.footer li a:hover i {
    transform: translateX(3px);
}

.footer li a[href^="mailto:"] {
    word-break: break-all;
}

.footer-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #c8c8c8;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-icons a:last-child {
    margin-right: 0;
}

.footer-icons .fa-telegram:hover {
    color: #0088cc;
}

.footer-icons .fa-linkedin:hover {
    color: #0077b5;
}

.footer-icons .fa-x-twitter:hover {
    color: #000000;
}

.footer-icons .fa-youtube:hover {
    color: #ff0000;
}
/* Footer */

/* Founder Section Styles */
.founder-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.founder-photo {
    width: 400px;
    height: 400px;
    object-fit: cover;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 20px;
    display: block;
    margin: 0 auto;
    opacity: 1;
    border-radius: 50%;
}

.founder-photo:hover {
    transform: scale(1.05);
}

.founder-content {
    padding: 20px;
}

.section-title {
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
}

.founder-name {
    color: #2c3e50;
    font-weight: 600;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.founder-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
}

.founder-achievements ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #555;
}

.founder-achievements i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .founder-content {
        text-align: center;
        margin-top: 30px;
    }
    
    .founder-photo, .company-photo {
        width: 250px;
        height: 250px;
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
    }
}

/* Company Section Styles */
.company-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.company-photo {
    max-width: 300px;
    height: 300px;
    object-fit: contain;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 20px;
    display: block;
    margin: 0 auto;
    opacity: 1;
}

.company-photo:hover {
    transform: scale(1.02);
}

.company-content {
    padding: 20px;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.company-description + .company-description {
    margin-top: 0.5rem;
}

.feature-item {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #007bff;
}

.feature-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 15px 0;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 991px) {
    .company-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .company-photo {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

/* Video Section Styles */
.video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-details {
    padding: 20px;
}

.video-details h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.video-source {
    color: #888;
    font-size: 0.9rem;
}

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 991px) {
    .video-card {
        margin-bottom: 30px;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Fade-in animations */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Language Switcher Styles */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.selected-lang {
    font-size: 0.9rem;
    color: #333;
}

.fa-globe {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: #333;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0,0,0,0.1);
}

/* Footer Articles Section */
.footer .col-md-3 h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer .col-md-3 ul li {
    margin-bottom: 0.8rem;
}

.footer .col-md-3 ul li a {
    color: #c8c8c8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .col-md-3 ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        background-color: rgba(255,255,255,0.95);
    }
    
    .footer .col-md-3 {
        margin-bottom: 2rem;
    }
    
    .footer .col-md-3 h4 {
        font-size: 1.1rem;
    }
}

.founder-activities {
    margin-top: 2rem;
}

.founder-activities h4 {
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.founder-activities ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.founder-activities ul li i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.founder-activities ul li:hover i {
    transform: scale(1.1);
}

@media (max-width: 767.98px) {
    .founder-activities h4 {
        font-size: 1.1rem;
    }

    .founder-activities ul li {
        font-size: 0.95rem;
    }
}

/* Articles Section Styling */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.article-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.article-link i {
    margin-right: 0.5rem;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    margin: -0.5rem 0 0.5rem 0;
    font-style: italic;
}

#interviewsCarousel {
    padding: 40px 0;
    background: #f8f9fa;
}

#interviewsCarousel .carousel-inner {
    padding: 20px 0;
}

#interviewsCarousel .carousel-item {
    padding: 0 15px;
}

#interviewsCarousel .carousel-control-prev,
#interviewsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
}

#interviewsCarousel .carousel-control-prev {
    left: -25px;
}

#interviewsCarousel .carousel-control-next {
    right: -25px;
}

#interviewsCarousel .carousel-control-prev:hover,
#interviewsCarousel .carousel-control-next:hover {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
}

#interviewsCarousel .carousel-control-prev-icon,
#interviewsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(0.5);
    transition: filter 0.3s ease;
}

#interviewsCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#interviewsCarousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}

#interviewsCarousel .carousel-indicators {
    bottom: -40px;
}

#interviewsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#interviewsCarousel .carousel-indicators button.active {
    background-color: #007bff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .articles-list {
        grid-template-columns: 1fr;
    }
    
    #interviewsCarousel .carousel-control-prev,
    #interviewsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #interviewsCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #interviewsCarousel .carousel-control-next {
        right: 10px;
    }
}

/* Stock Widget Sidebar */
.stock-widget-sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.stock-widget-sidebar.open {
    right: 0;
}

.stock-widget-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.stock-widget-toggle i {
    transition: transform 0.3s ease;
}

.stock-widget-sidebar.open .stock-widget-toggle i {
    transform: rotate(180deg);
}

.stock-widget-content {
    height: 100%;
    overflow-y: auto;
    padding: 10px;
}

.stock-widget-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tradingview-widget-container {
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .stock-widget-sidebar {
        width: 280px;
        right: -280px;
    }
    
    .stock-widget-sidebar.open {
        right: 0;
    }
    
    .stock-widget-toggle {
        width: 35px;
        height: 35px;
    }
    
    .stock-widget-content {
        padding: 15px;
    }
    
    .tradingview-widget-container {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .stock-widget-sidebar {
        width: 260px;
        right: -260px;
    }
    
    .stock-widget-toggle {
        width: 30px;
        height: 30px;
    }
    
    .stock-widget-content {
        padding: 10px;
    }
}