/* ============================================
   Responsive Stylesheet
   Mobile, Tablet, and Small Devices
   ============================================ */

/* ============================================
   Extra Large Devices (Large Desktops)
   1200px and up
   ============================================ */
@media (min-width: 1200px) {
  .container {
    max-width: 1260px;
  }
  
  /* Desktop Navigation */
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none !important;
  }
  
  .topbar-mobile {
    display: none !important;
  }
  
  .section-logo {
    display: flex !important;
  }
  
  .navbar {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
    overflow: visible;
  }
  
  .navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 0;
  }
  
  .navbar ul li {
    position: relative;
    margin-bottom: 0;
  }
  
  .navbar ul li a {
    padding: 10px 15px;
    font-size: 15px;
    color: var(--white-80);
    white-space: nowrap;
    border-radius: 0;
  }
  
  .navbar ul li a:hover,
  .navbar ul li a.active {
    background: transparent;
    color: var(--secondary-color);
  }
  
  .navbar .dropdown ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: var(--white);
    box-shadow: 0 0 20px 3px var(--shadow-color);
    border-top: 2px solid var(--secondary-color);
    border-radius: 4px;
    padding: 10px 0;
    margin: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar .dropdown ul li {
    margin-bottom: 0;
    
  }
  
  .navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--gray);
    width: 100%;
  }
  
  .navbar .dropdown ul li a:hover {
    background: var(--primary-color-5);
    color: var(--primary-color);
  }
  
  
  .navbar .dropdown ul li:last-child a {
    border-bottom: none;
  }
}

/* ============================================
   iPad Pro Specific (1024px)
   ============================================ */
@media (min-width: 1024px) and (max-width: 1024px) {
  /* Ensure header is perfect on iPad Pro */
  .header {
    background-color: var(--primary-color);
  }
  
  .header .container {
    max-width: 100%;
  }
  
  .section-logo {
    flex: 0 0 auto;
    /*min-width: 200px;*/
  }
  
  .section-menu {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .navbar ul {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  
  .navbar ul li a {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ============================================
   Large Devices (Desktops)
   992px to 1199px
   ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Typography */
  .section-title h2 {
    font-size: 22px;
  }
  
  .section-title span {
    font-size: 20px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Header - iPad Pro & Large Tablets (NOT Mobile) */
  .header {
    background-color: var(--primary-color);
    padding: 0;
  }
  
  .header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
   .header.sticked .logo img {
    max-height: 65px;
  }  
  .section-logo {
    padding-left: 25px;
    /*padding-right: 15px;*/
    border-left: 1px solid hsla(0,0%,100%,.12);
    display: flex !important;
    align-items: center;
  }
  
 
  /* Topbar - iPad Pro */
  .header .topbar {
    font-size: 14px;
    padding: 8px 0;
    min-height: 45px;
    display: flex;
    align-items: center;
  }
  
  .header .topbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .header .topbar .contact-info {
    gap: 12px;
  }
  
  .header .topbar .contact-info i {
    margin: 0 4px;
    font-size: 14px;
  }
  
  .header .topbar .contact-info i a {
    font-size: 13px;
    white-space: nowrap;
  }
  
  .header .topbar .social-links {
    gap: 8px;
  }
  
  .header .topbar .social-links a {
    margin-left: 10px;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Menu Section - iPad Pro */
  .section-menu {
    flex: 1;
  }
  
  .section-menu .menu {
    padding-top: 0;
  }
  
  .header.sticked .menu {
    margin-top: 0;
  }
  
  .header.sticked .navbar {
    margin-top: 15px;
  }
  
  /* Hide mobile elements on iPad Pro */
  .topbar-mobile {
    display: none !important;
  }
  
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none !important;
  }
  
  /* Desktop Navbar for iPad Pro */
  .navbar {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
    overflow: visible;
    transform: none;
  }
  
  .navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
  }
  
  .navbar ul li {
    position: relative;
    margin-bottom: 0;
  }
  
  .navbar ul li a {
    padding: 12px 12px;
    font-size: 14px;
    color: var(--white-80);
    white-space: nowrap;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar ul li a i {
    font-size: 12px;
    margin-left: 5px;
  }
  
  .navbar ul li a:hover,
  .navbar ul li a.active {
    background: transparent;
    color: var(--secondary-color);
  }
  
  .navbar .dropdown ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: var(--white);
    box-shadow: 0 0 20px 3px var(--shadow-color);
    border-top: 2px solid var(--secondary-color);
    border-radius: 4px;
    padding: 8px 0;
    margin: 8px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar .dropdown ul li a {
    padding: 8px 18px;
    font-size: 13px;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--gray);
  }
  
  .navbar .dropdown ul li a:hover {
    background: var(--primary-color-5);
    color: var(--primary-color);
  }
  
  /* Header Layout Fixes for iPad Pro */
  .header.d-flex {
    flex-direction: row;
    align-items: stretch;
  }
  
  .header .container.d-flex {
    flex-direction: row;
    align-items: stretch;
  }
  
  /* Ensure proper topbar display */
  .header .topbar.d-none.d-md-flex {
    display: flex !important;
  }
  
  /* Fix topbar height */
  .header .topbar.h-50 {
    height: auto;
    min-height: 45px;
  }
  
  /* Contact info alignment */
  .header .topbar .contact-info.d-flex {
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Social links alignment */
  .header .topbar .social-links.d-none.d-md-flex {
    display: flex !important;
    align-items: center;
  }
  
  /* Slider */
  .section-slider {
    height: 60vh;
    min-height: 500px;
  }
  
  .section-slider .swiper-button-next {
    right: 20px;
  }
  
  .section-slider .swiper-button-prev {
    left: 20px;
  }
  
  .section-slider .slider-content .top-title {
    font-size: 35px;
  }
  
  .section-slider .slider-content h1 {
    font-size: 28px;
  }
  
  .section-slider .slider-content p {
    font-size: 20px;
  }
  
  /* Features */
  .feature-item {
    padding: 25px;
  }
  
  .feature-item-header {
    padding: 25px 25px 12px;
  }
  
  /* About */
  .section-about .about-content {
    margin-left: 20px;
  }
  
  .section-about .about-content .about-title h2 {
    font-size: 24px;
  }
  
  /* Buildings */
  .section-buildings .section-content {
    max-width: 550px;
  }
  
  /* Publications */
  .publications-content {
    padding: 0px 50px 40px;
  }
  
  /* Breadcrumbs */
  .breadcrumbs .page-header h2 {
    font-size: 35px;
  }
  
  /* Page */
  .page h3 {
    font-size: 22px;
  }
  
  /* Footer */
  .section-footer .footer-widget h3 {
    font-size: 20px;
  }
  
  /* Page Layout - Large Tablets */
  .page .row {
    row-gap: 30px;
  }
  
  /* Sidebar - Large Tablets */
  .sidebar {
    margin-top: 0;
  }
  
  .sidebar .sidebar-widget ul li a {
    padding: 15px 18px;
    font-size: 15px;
  }
  
  /* About Images - Large Tablets */
  .about-img .row {
    row-gap: 20px;
  }
  
  /* Tabs - Large Tablets */
  .section-about .about-content .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .section-about .about-content .tabs li {
    margin-left: 0;
    margin-bottom: 8px;
    padding: 8px 7px;
  }
  
  .section-about .about-content .tab_content {
    padding: 0 0px 0px 15px;
  }
}

/* ============================================
   Medium Devices (Tablets)
   768px to 991px
   ============================================ */
@media (max-width: 991px) {
  /* Typography */
  body {
    font-size: 14px;
  }
  
  p {
    font-size: 14px;
    line-height: 26px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 20px;
  }
  
  .section-title span {
    font-size: 18px;
  }
  
  h3 {
    font-size: 17px;
  }
  
  h4 {
    font-size: 15px;
  }
  
  /* Header */
  .header {
    margin-bottom: 0;
  }
  
  .header .logo img {
    max-height: 70px;
    padding: 8px;
  }
  
  .header.sticked .logo img {
    max-height: 60px;
  }
  
  .header .topbar {
    font-size: 14px;
    padding: 8px 0px;
  }
  
  .section-logo {
    padding-left: 20px;
    border-left: none;
  }
  
  /* Navigation */
  .mobile-nav-toggle {
    display: inline-flex;
  }
  
  /* Header Structure */
  .header {
    background-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(7, 32, 49, 0.18);
  }
  
  .header.d-flex {
    flex-direction: column;
    align-items: stretch !important;
  }
  
  .header .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .section-logo {
    border: none;
    padding-left: 0;
    display: none !important;
  }
  
  .topbar-mobile {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
  }
  
  .topbar-mobile .logo {
    order: 1;
  }
  
  .topbar-mobile .logo img {
    max-height: 60px;
    width: auto;
    height: auto;
  }
  
  .topbar-mobile .mobile-nav-toggle {
    order: 2;
    font-size: 28px;
    color: var(--white);
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .section-menu .topbar {
    display: none !important;
  }
  
  .section-menu .menu {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }
  
  .mobile-nav-show,
  .mobile-nav-hide {
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
  }
  
  .mobile-nav-show {
    margin-inline-start: 0;
  }
  
  .mobile-nav-hide {
    position: fixed;
    top: 18px;
    inset-inline-end: 18px;
    z-index: 9999;
  }
  
  /* Mobile Navbar */
  .navbar {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: 100%;
    max-width: 360px;
    bottom: 0;
    background: rgba(13, 66, 97,100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    padding: 16px 0;
    z-index: 9997;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
  
  .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 32, 49, 0.6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  
  .navbar ul {
    inset: 0;
    padding: 20px 18px 40px;
    gap: 6px;
    margin: 0;
    list-style: none;
  }
  
  .navbar ul li {
    margin-bottom: 4px;
  }
  
  .navbar ul li a,
  .navbar ul li a:focus {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    color: var(--white-80);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  
  .navbar ul li a i {
    font-size: 12px;
    margin-left: 5px;
  }
  
  .navbar ul li a:hover,
  .navbar ul li a.active {
    background: rgba(162, 148, 117, 0.18);
    color: var(--secondary-color);
  }
  
  .navbar .dropdown ul {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 8px 0 12px;
    display: none;
    border-radius: 8px;
  }
  
  .navbar .dropdown ul li {
    margin-bottom: 4px;
  }
  
  .navbar .dropdown ul li a {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .navbar .dropdown > a.active + ul,
  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown ul.dropdown-active {
    display: block;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .navbar {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .navbar:before {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Slider */
  .section-slider {
    height: 65vh;
    min-height: 450px;
  }
  
  .section-slider .swiper-slide {
    height: 60vh;
    min-height: 500px;
  }
  
  .hero-slide__content {
    padding: 2rem;
  }
  
  .hero-slide__title {
    font-size: 2rem;
  }
  
  .hero-slide__subtitle {
    font-size: 1.1rem;
  }
  
  .section-slider .swiper-button-next,
  .section-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .section-slider .swiper-button-next {
    right: 15px;
  }
  
  .section-slider .swiper-button-prev {
    left: 15px;
  }
  
  .section-slider .swiper-button-next:after,
  .section-slider .swiper-button-prev:after {
    font-size: 16px;
  }
  
  .section-slider .slider-content .top-title {
    font-size: 30px;
  }
  
  .section-slider .slider-content h1 {
    font-size: 24px;
    padding-top: 15px;
  }
  
  .section-slider .slider-content p {
    font-size: 18px;
    padding-top: 15px;
  }
  
  .section-slider .swiper-pagination {
    bottom: 20px !important;
  }
  
  /* Features */
  .section-feature {
    margin-top: -100px;
    padding-bottom: 40px;
  }
  
  .feature-item {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .feature-item-header {
    padding: 20px 20px 12px;
    margin-bottom: 20px;
  }
  
  .feature-item .title i {
    font-size: 40px;
  }
  
  .feature-item .title h3 {
    font-size: 15px;
    padding-right: 70px;
    padding-top: 18px;
  }
  
  .feature-item-header .title h3 {
    font-size: 15px;
  }
  
  .feature-item-header .arrow-left {
    padding-bottom: 60px;
  }
  
  /* Blog */
  .section-blog {
    padding: 60px 0;
  }
  
  .section-blog .card {
    margin-bottom: 25px;
  }
  
  .section-blog .blog .card-body p {
    font-size: 14px;
    line-height: 22px;
  }
  
  /* About */
  .section-about {
    padding: 60px 0;
  }
  
  .section-about .about-content {
    margin-left: 0;
    margin-top: 30px;
  }
  
  .section-about .about-content .about-title {
    margin-bottom: 30px;
  }
  
  .section-about .about-content .about-title h2 {
    font-size: 22px;
  }
  
  .section-about .about-content .about-title span {
    font-size: 18px;
  }
  
  .section-about .about-content .tabs li {
    font-size: 14px;
    margin-left: 10px;
  }
  
  .section-about .about-content .tab_content {
    padding: 0 0px 0px 15px;
  }
  
  /* Page Layout - Tablet */
  .page .row {
    row-gap: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .page .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  
  .page .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  
  /* Sidebar - Tablet */
  .sidebar {
    margin-top: 0;
  }
  
  .sidebar .sidebar-widget {
    margin-bottom: 25px;
  }
  
  .sidebar .sidebar-widget ul li a {
    padding: 14px 16px;
    font-size: 15px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .sidebar .sidebar-widget ul li a:hover {
    transform: translateX(-5px);
  }
  
  .sidebar .sidebar-widget ul li a.active {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .sidebar .sidebar-widget ul li a.active::before {
    content: "\f270";
  }
  
  /* About Images - Tablet */
  .about-img .row {
    row-gap: 20px;
  }
  
  .about-img .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Tabs - Tablet */
  .section-about .about-content .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
  }
  
  .section-about .about-content .tabs li {
    margin-left: 0;
    margin-bottom: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--primary-color);
    white-space: nowrap;
  }
  
  .section-about .about-content .tabs li.current {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: var(--primary-color-5);
  }
  
  .section-about .about-content .tab_content {
    padding: 0;
    margin-top: 20px;
  }
  
  .tab .tabs_item {
    display: none;
  }
  
  .tab .tabs_item:first-child {
    display: block;
  }
  
  .tab .tab_content {
    padding: 0;
  }
  
  /* Ensure tabs are clickable on tablet */
  .section-about .about-content .tabs li {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: rgba(162, 148, 117, 0.2);
    touch-action: manipulation;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .section-about .about-content .tabs li:active {
    transform: scale(0.98);
    background: var(--primary-color-10);
  }
  
  .section-about .about-content .tabs li.current:active {
    background: var(--primary-color-10);
  }
  
  /* Fix tab content visibility - work with JS */
  .tab .tabs_item {
    display: none;
  }
  
  .tab .tabs_item:first-child {
    display: block;
  }
  
  /* Ensure tabs are properly styled for touch */
  .section-about .about-content .tabs {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Message */
  .section-message {
    padding: 60px 0;
  }
  
  .section-message .message-item {
    padding: 25px;
    min-height: 450px;
    max-height: 450px;
    margin-bottom: 25px;
  }
  
  .section-message .message-item .section-title h2 {
    font-size: 18px;
  }
  
  .section-message .message-item blockquote {
    font-size: 15px;
    line-height: 26px;
  }
  
  .section-message .message-item blockquote:before,
  .section-message .message-item blockquote:after {
    font-size: 40px;
  }
  
  /* Study Plan */
  .section-studyPlan {
    padding: 60px 0;
  }
  
  .section-studyPlan .studyPlan-item {
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  
  /* Buildings */
  .section-buildings .col-lg-6.pr-0 {
    padding-right: 15px;
  }
  
  .section-buildings .col-lg-6.pl-0 {
    padding-left: 15px;
  }
  
  .section-buildings .section-content {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  
  .section-buildings .buildings-item {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .section-buildings .buildings-item h3 {
    font-size: 16px;
  }
  
  /* Publications */
  .section-publications {
    padding: 60px 0;
  }
  
  /* Buildings */
  .section-buildings {
    padding: 60px 0;
  }
  
  .publications-content {
    padding: 0px 30px 30px;
  }
  
  .publications-item h2 {
    font-size: 16px;
    padding: 25px 15px;
  }
  
  /* Partner */
  .section-Partner {
    padding: 60px 0;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .breadcrumbs .page-header h2 {
    font-size: 30px;
  }
  
  .breadcrumbs .page-header ul li {
    font-size: 14px;
  }
  
  /* Page */
  .page {
    padding: 30px 15px 40px 15px;
  }
  
  .page h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .page h4 {
    font-size: 15px;
    padding: 12px 0px;
  }
  
  .page .img-custom {
    height: 400px;
    margin-top: 30px;
  }
  
  .page .page-content ul li {
    padding-bottom: 12px;
    font-size: 14px;
  }
  
  /* Sidebar */
  .sidebar-wrapper {
    padding: 20px 20px 25px;
    height: auto;
    margin-bottom: 30px;
  }
  
  .sidebar .sidebar-widget ul li a {
    padding: 15px;
    font-size: 14px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a {
    padding: 15px 20px;
    padding-left: 65px;
    font-size: 14px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a i {
    font-size: 35px;
    top: 10px;
    left: 20px;
  }
  
  .sidebar .services-contact {
    padding: 25px;
  }
  
  .sidebar .services-contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  /* Gallery */
  .gallery-content .title {
    font-size: 13px;
    line-height: 20px;
  }
  
  .gallery-content .icon {
    width: 32px;
    height: 32px;
  }
  
  .gallery-content .icon i {
    font-size: 17px;
  }
  
  /* Contact */
  .map-area iframe {
    height: 400px;
  }
  
  .contact-us li {
    font-size: 14px;
  }
  
  /* Footer */
  .section-footer {
    padding-top: 50px;
  }
  
  .section-footer .footer-widget {
    margin-bottom: 35px;
  }
  
  .section-footer .footer-widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .section-footer .footer-widget .social-icon li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
  
  /* Go Top */
  .go-top.active {
    right: 2%;
    top: 90%;
  }
  
  /* Quick Chat */
  a.quick-chat,
  a.whatsapp-chat {
    bottom: 20px;
    left: 10px;
    font-size: 14px;
    padding: 8px 16px;
  }
  
  /* Pagination */
  .pagination-area .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
  }
}

/* ============================================
   Small Devices (Mobile Landscape)
   576px to 767px
   ============================================ */
@media (max-width: 767px) {
  /* Typography */
  body {
    font-size: 13px;
  }
  
  p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 18px;
  }
  
  .section-title span {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  h3 {
    font-size: 16px;
  }
  
  h4 {
    font-size: 14px;
  }
  
  /* Header */
  .header .logo img {
    max-height: 60px;
    padding: 5px;
  }
  
  .header.sticked .logo img {
    max-height: 50px;
  }
  
  .header .topbar {
    font-size: 12px;
    padding: 6px 0px;
  }
  
  .header .topbar .contact-info i {
    margin: 0px 3px;
  }
  
  .header .topbar .social-links a {
    margin-left: 10px;
  }
  
  .section-logo {
    padding-left: 15px;
  }
  
  /* Mobile Navbar Adjustments */
  .navbar {
    max-width: 320px;
  }
  
  .navbar ul {
    padding: 18px 15px 35px;
  }
  
  .navbar ul li a,
  .navbar ul li a:focus {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .mobile-nav-hide {
    top: 15px;
    inset-inline-end: 15px;
    font-size: 26px;
  }
  
  /* Slider */
  .section-slider {
    height: 55vh;
    min-height: 380px;
  }
  
  .section-slider .swiper-slide {
    height: 50vh;
    min-height: 400px;
  }
  
  .hero-slide__content {
    padding: 1.5rem;
    min-height: clamp(280px, 50vh, 450px);
  }
  
  .hero-slide__title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-slide__subtitle {
    font-size: 1rem;
  }
  
  .section-slider .swiper-button-next,
  .section-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .section-slider .swiper-button-next {
    right: 10px;
  }
  
  .section-slider .swiper-button-prev {
    left: 10px;
  }
  
  .section-slider .swiper-button-next:after,
  .section-slider .swiper-button-prev:after {
    font-size: 14px;
  }
  
  .section-slider .slider-content .top-title {
    font-size: 24px;
  }
  
  .section-slider .slider-content h1 {
    font-size: 20px;
    padding-top: 10px;
  }
  
  .section-slider .slider-content p {
    font-size: 16px;
    padding-top: 10px;
  }
  
  .section-slider .swiper-pagination {
    bottom: 15px !important;
  }
  
  .section-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  
  .section-slider .swiper-pagination-bullet-active {
    width: 25px;
  }
  
  /* Features */
  .section-feature {
    margin-top: -80px;
    padding-bottom: 30px;
  }
  
  .feature-item {
    padding: 18px;
    margin-bottom: 18px;
  }
  
  .feature-item-header {
    padding: 18px 18px 10px;
    margin-bottom: 18px;
  }
  
  .feature-item .title i {
    font-size: 35px;
  }
  
  .feature-item .title img {
    max-width: 35px;
  }
  
  .feature-item .title h3 {
    font-size: 14px;
    padding-right: 60px;
    padding-top: 15px;
  }
  
  .feature-item-header .title h3 {
    font-size: 14px;
  }
  
  .feature-item-header .arrow-left {
    padding-bottom: 50px;
  }
  
  .feature-item-header .arrow-left::after {
    border-top: 12px solid transparent;
    border-right: 12px solid var(--primary-color);
    border-bottom: 12px solid transparent;
  }
  
  /* Blog */
  .section-blog {
    padding: 50px 0;
  }
  
  .section-blog .card {
    margin-bottom: 20px;
  }
  
  .section-blog .blog .card-body a {
    font-size: 14px;
  }
  
  .section-blog .blog .card-body p {
    font-size: 13px;
    line-height: 20px;
  }
  
  .section-blog .blog-date {
    font-size: 14px;
  }
  
  /* About */
  .section-about {
    padding: 50px 0;
  }
  
  .section-about .about-content {
    margin-top: 25px;
  }
  
  .section-about .about-content .about-title {
    margin-bottom: 25px;
  }
  
  .section-about .about-content .about-title h2 {
    font-size: 20px;
  }
  
  .section-about .about-content .about-title span {
    font-size: 16px;
  }
  
  .section-about .about-content .tabs {
    margin-bottom: 20px;
  }
  
  .section-about .about-content .tabs li {
    font-size: 13px;
    margin-left: 8px;
    padding-bottom: 4px;
  }
  
  .section-about .about-content .tab_content {
    padding: 0;
  }
  
  .section-about .about-content .tab_content .tabs_item ul li {
    font-size: 14px;
    padding-right: 20px;
  }
  
  /* Page Layout - Mobile */
  .page .row {
    row-gap: 25px;
  }
  
  /* Sidebar - Mobile */
  .sidebar {
    margin-top: 0;
    order: -1;
  }
  
  /* About Images - Mobile */
  .about-img .col-lg-6 {
    margin-bottom: 15px;
  }
  
  /* Tabs - Mobile */
  .section-about .about-content .tabs {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .section-about .about-content .tabs li {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    min-height: 44px;
    touch-action: manipulation;
  }
  
  /* Fix tab content on mobile - work with JS */
  .tab .tabs_item {
    display: none;
  }
  
  .tab .tabs_item:first-child {
    display: block;
  }
  
  /* Ensure tabs work on touch devices */
  .section-about .about-content .tabs {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Message */
  .section-message {
    padding: 50px 0;
  }
  
  .section-message .message-item {
    padding: 20px;
    min-height: auto;
    max-height: none;
    margin-bottom: 20px;
  }
  
  .section-message .message-item .section-title h2 {
    font-size: 16px;
  }
  
  .section-message .message-item h4 {
    font-size: 14px;
  }
  
  .section-message .message-item span {
    font-size: 12px;
  }
  
  .section-message .message-item blockquote {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .section-message .message-item blockquote:before,
  .section-message .message-item blockquote:after {
    font-size: 32px;
  }
  
  .section-message .message-item ul {
    padding: 20px 0;
  }
  
  .section-message .message-item ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  /* Study Plan */
  .section-studyPlan {
    padding: 50px 0;
  }
  
  .section-studyPlan .studyPlan-item {
    padding: 20px 18px;
    margin-bottom: 20px;
  }
  
  .section-studyPlan .studyPlan-item h3 {
    font-size: 15px;
  }
  
  .section-studyPlan .studyPlan-item span {
    font-size: 80px;
  }
  
  /* Buildings */
  .section-buildings .buildings-item {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .section-buildings .buildings-item h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .section-buildings .buildings-item span {
    font-size: 60px;
  }
  
  /* Publications */
  .section-publications {
    padding: 50px 0;
  }
  
  /* Buildings */
  .section-buildings {
    padding: 50px 0;
  }
  
  .publications-content {
    padding: 0px 15px 25px;
  }
  
  .publications-item h2 {
    font-size: 15px;
    padding: 20px 12px;
  }
  
  .publications-item figure .publication-img {
    padding: 15px 15px 8px;
  }
  
  .publications-item figure .publication-img h3 {
    font-size: 13px;
    padding-top: 15px;
  }
  
  /* Partner */
  .section-Partner {
    padding: 50px 0;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  
  .breadcrumbs .page-header h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .breadcrumbs .page-header ul {
    margin-top: 8px;
  }
  
  .breadcrumbs .page-header ul li {
    font-size: 13px;
  }
  
  /* Page */
  .page {
    padding: 25px 10px 30px 10px;
  }
  
  .page h3 {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 4px;
  }
  
  .page h4 {
    font-size: 14px;
    padding: 10px 0px;
  }
  
  .page p span {
    font-size: 14px;
  }
  
  .page .img-custom {
    height: 300px;
    margin-top: 25px;
  }
  
  .page .page-content ul li {
    padding-bottom: 10px;
    font-size: 13px;
  }
  
  .page .page-content ul li span {
    font-size: 14px;
  }
  
  .page .blog-details-content .blog-heading .date {
    font-size: 14px;
  }
  
  /* Sidebar */
  .sidebar-wrapper {
    padding: 18px 15px 20px;
    margin-bottom: 25px;
  }
  
  .sidebar .sidebar-widget {
    margin-bottom: 25px;
  }
  
  .sidebar .sidebar-widget ul li a {
    padding: 12px 15px;
    font-size: 13px;
  }
  
  .sidebar .sidebar-widget ul li a::before {
    font-size: 18px;
  }
  
  .sidebar .sidebar-qrcode-widget h3 {
    font-size: 16px;
  }
  
  .sidebar .sidebar-pdf-widget ul li {
    margin-bottom: 12px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a {
    padding: 12px 15px;
    padding-left: 60px;
    font-size: 13px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a i {
    font-size: 30px;
    top: 8px;
    left: 15px;
  }
  
  .sidebar .services-contact {
    padding: 20px;
  }
  
  .sidebar .services-contact h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  /* Gallery */
  .gallery-item {
    margin-bottom: 25px;
  }
  
  .gallery-thumb {
    border: 5px solid var(--white);
  }
  
  .gallery-content {
    bottom: 20px;
  }
  
  .gallery-content .title {
    font-size: 12px;
    line-height: 18px;
    margin-right: 12px;
  }
  
  .gallery-content .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }
  
  .gallery-content .icon i {
    font-size: 16px;
  }
  
  .icon-wraper {
    margin-right: 10px;
  }
  
  /* Contact */
  .map-area iframe {
    height: 350px;
  }
  
  .contact-us li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .contact-us li i {
    font-size: 14px;
  }
  
  .contact-us li span,
  .contact-us li span a {
    font-size: 13px;
  }
  
  .offcanvas-title {
    font-size: 20px;
  }
  
  /* Footer */
  .section-footer {
    padding-top: 40px;
  }
  
  .section-footer .footer-widget {
    margin-bottom: 30px;
  }
  
  .section-footer .footer-widget .footer-logo {
    margin-bottom: 15px;
  }
  
  .section-footer .footer-widget p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .section-footer .footer-widget h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .section-footer .footer-widget .social-icon li {
    margin-right: 4px;
  }
  
  .section-footer .footer-widget .social-icon li a i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 15px;
  }
  
  .section-footer .footer-widget .import-link li {
    margin-bottom: 10px;
    font-size: 13px;
    padding-right: 18px;
  }
  
  .section-footer .footer-widget .address li {
    font-size: 13px;
    padding-right: 35px;
    margin-bottom: 5px;
  }
  
  .section-footer .footer-widget .address li i {
    font-size: 18px;
  }
  
  .copy-right-area {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .copy-right-area p {
    font-size: 12px;
  }
  
  /* Go Top */
  .go-top {
    width: 36px;
    height: 38px;
    line-height: 38px;
  }
  
  .go-top i {
    font-size: 18px;
  }
  
  .go-top.active {
    right: 1.5%;
    top: 88%;
  }
  
  /* Quick Chat */
  a.quick-chat,
  a.whatsapp-chat {
    bottom: 15px;
    left: 8px;
    font-size: 13px;
    padding: 7px 14px;
  }
  
  a.quick-chat i,
  a.whatsapp-chat i {
    margin: 0 0 0 8px;
  }
  
  /* Pagination */
  .pagination-area {
    margin-top: 8px;
  }
  
  .pagination-area .page-numbers {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    margin-left: 2px;
    margin-right: 2px;
  }
  
  .pagination-area .page-numbers i {
    font-size: 22px;
    top: 4px;
  }
  
  /* Featured Controls */
  .featured-button-next,
  .featured-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .featured-button-next:after,
  .featured-button-prev:after {
    font-size: 18px;
  }
  
  .featured-controls--sidebar .featured-button-next,
  .featured-controls--sidebar .featured-button-prev {
    width: 32px;
    height: 32px;
  }
  
  /* Card Body */
  .card-body {
    min-height: 240px;
  }
  
  /* Position Relative */
  .position-relative {
    margin-top: 15px;
  }
  
  /* VH Utilities */
  .vh-70 {
    height: 50vh !important;
  }
}

/* ============================================
   Extra Small Devices (Mobile Portrait)
   Up to 575px
   ============================================ */
@media (max-width: 575px) {
  /* Typography */
  body {
    font-size: 12px;
  }
  
  p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  
  .section-title {
    margin-bottom: 25px;
  }
  
  .section-title h2 {
    font-size: 16px;
  }
  
  .section-title span {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  h3 {
    font-size: 15px;
  }
  
  h4 {
    font-size: 13px;
  }
  
  /* Header */
  .header .logo img {
    max-height: 50px;
    padding: 3px;
  }
   
  .header .topbar {
    font-size: 11px;
    padding: 5px 0px;
  }
  
  .header .topbar .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header .topbar .contact-info i {
    margin: 2px 3px;
  }
  
  .header .topbar .social-links {
    margin-top: 5px;
  }
  
  .header .topbar .social-links a {
    margin-left: 8px;
  }
  
  .section-logo {
    padding-left: 10px;
  }
  
  /* Mobile Navbar Extra Small */
  .navbar {
    max-width: 100%;
  }
  
  .navbar ul {
    padding: 15px 12px 30px;
  }
  
  .navbar ul li a,
  .navbar ul li a:focus {
    padding: 10px;
    font-size: 13px;
  }
  
  .navbar .dropdown ul {
    padding: 8px 10px;
    margin: 6px 0 10px;
  }
  
  .navbar .dropdown ul li a {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .mobile-nav-hide {
    top: 12px;
    inset-inline-end: 12px;
    font-size: 24px;
  }
  
  .topbar-mobile {
    padding: 8px 12px;
  }
  
  .topbar-mobile .logo img {
    max-height: 50px;
  }
  
  .topbar-mobile .mobile-nav-toggle {
    font-size: 24px;
    min-width: 40px;
    min-height: 40px;
  }
  
  /* Slider */
  .section-slider {
    height: 40vh;
    min-height: 320px;
  }
  
  .section-slider .swiper-slide {
    height: 45vh;
    min-height: 350px;
  }
  
  .hero-slide__content {
    padding: 1rem;
    min-height: clamp(250px, 45vh, 400px);
  }
  
  .hero-slide__title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  
  .hero-slide__subtitle {
    font-size: 0.9rem;
  }
  
  .section-slider .swiper-button-next,
  .section-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  
  .section-slider .swiper-button-next {
    right: 8px;
  }
  
  .section-slider .swiper-button-prev {
    left: 8px;
  }
  
  .section-slider .swiper-button-next:after,
  .section-slider .swiper-button-prev:after {
    font-size: 12px;
  }
  
  .section-slider .slider-content .top-title {
    font-size: 20px;
  }
  
  .section-slider .slider-content h1 {
    font-size: 18px;
    padding-top: 8px;
  }
  
  .section-slider .slider-content p {
    font-size: 14px;
    padding-top: 8px;
  }
  
  .section-slider .swiper-pagination {
    bottom: 12px !important;
  }
  
  .section-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  
  .section-slider .swiper-pagination-bullet-active {
    width: 20px;
  }
  
  /* Features */
  .section-feature {
    margin-top: -60px;
    padding-bottom: 25px;
  }
  
  .feature-item {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .feature-item-header {
    padding: 15px 15px 8px;
    margin-bottom: 15px;
  }
  
  .feature-item .title i {
    font-size: 30px;
  }
  
  .feature-item .title img {
    max-width: 30px;
  }
  
  .feature-item .title h3 {
    font-size: 13px;
    padding-right: 50px;
    padding-top: 12px;
  }
  
  .feature-item-header .title h3 {
    font-size: 13px;
  }
  
  .feature-item-header .arrow-left {
    padding-bottom: 45px;
  }
  
  .feature-item-header .arrow-left::after {
    content: " ";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid var(--primary-color);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: none;
    top: auto;
  }
  
  /* Blog */
  .section-blog {
    padding: 40px 0;
  }
  
  .section-blog .card {
    margin-bottom: 18px;
  }
  
  .section-blog .blog .card-body a {
    font-size: 13px;
    margin: 8px 0px;
  }
  
  .section-blog .blog .card-body p {
    font-size: 12px;
    line-height: 18px;
  }
  
  .section-blog .blog-date {
    font-size: 13px;
  }
  
  /* About */
  .section-about {
    padding: 40px 0;
  }
  
  .section-about .about-content {
    margin-top: 20px;
  }
  
  .section-about .about-content .about-title {
    margin-bottom: 20px;
  }
  
  .section-about .about-content .about-title h2 {
    font-size: 18px;
  }
  
  .section-about .about-content .about-title span {
    font-size: 14px;
  }
  
  .section-about .about-content .tabs {
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 0px;
  }
  
  .section-about .about-content .tabs li {
    font-size: 12px;
    margin-left: 5px;
    margin-bottom: 5px;
    padding-bottom: 3px;
  }
  
  .section-about .about-content .tab_content .tabs_item ul li {
    font-size: 13px;
    padding-right: 18px;
  }
  
  /* Message */
  .section-message {
    padding: 40px 0;
  }
  
  .section-message .message-item {
    padding: 18px;
    margin-bottom: 18px;
  }
  
  .section-message .message-item .section-title h2 {
    font-size: 15px;
  }
  
  .section-message .message-item h4 {
    font-size: 13px;
  }
  
  .section-message .message-item span {
    font-size: 11px;
  }
  
  .section-message .message-item blockquote {
    font-size: 13px;
    line-height: 22px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  
  .section-message .message-item blockquote:before,
  .section-message .message-item blockquote:after {
    font-size: 28px;
    padding-right: 8px;
    padding-left: 8px;
  }
  
  .section-message .message-item .img-chairman {
    padding: 15px 0px 8px 0px;
  }
  
  .section-message .message-item ul {
    padding: 15px 0;
  }
  
  .section-message .message-item ul li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .section-message .message-item i {
    font-size: 18px;
  }
  
  /* Study Plan */
  .section-studyPlan {
    padding: 40px 0;
  }
  
  .section-studyPlan .studyPlan-item {
    padding: 18px 15px;
    margin-bottom: 18px;
  }
  
  .section-studyPlan .studyPlan-item i {
    font-size: 18px;
  }
  
  .section-studyPlan .studyPlan-item h3 {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  .section-studyPlan .studyPlan-item span {
    font-size: 70px;
  }
  
  /* Buildings */
  .section-buildings .buildings-item {
    padding: 18px;
    margin-bottom: 18px;
  }
  
  .section-buildings .buildings-item h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .section-buildings .buildings-item span {
    font-size: 50px;
    top: -10px;
    left: -3px;
  }
  
  /* Publications */
  .section-publications {
    padding: 40px 0;
  }
  
  /* Buildings */
  .section-buildings {
    padding: 40px 0;
  }
  
  .publications-content {
    padding: 0px 10px 20px;
  }
  
  .publications-item h2 {
    font-size: 14px;
    padding: 18px 10px;
  }
  
  .publications-item figure .publication-img {
    padding: 12px 12px 6px;
  }
  
  .publications-item figure .publication-img h3 {
    font-size: 12px;
    padding-top: 12px;
  }
  
  /* Partner */
  .section-Partner {
    padding: 40px 0;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    padding-top: 80px;
    padding-bottom: 25px;
  }
  
  .breadcrumbs .page-header h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .breadcrumbs .page-header ul {
    margin-top: 6px;
  }
  
  .breadcrumbs .page-header ul li {
    font-size: 12px;
  }
  
  /* Page */
  .page {
    padding: 20px 8px 25px 8px;
  }
  
  .page h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 3px;
  }
  
  .page h4 {
    font-size: 13px;
    padding: 8px 0px;
  }
  
  .page p span {
    font-size: 13px;
  }
  
  .page .img-custom {
    height: 250px;
    margin-top: 20px;
  }
  
  .page .page-content ul li {
    padding-bottom: 8px;
    font-size: 12px;
  }
  
  .page .page-content ul li span {
    font-size: 13px;
  }
  
  .page .blog-details-content .blog-heading .date {
    font-size: 13px;
  }
  
  .page .blog-details-content .blog-heading h3 {
    padding-top: 8px !important;
    margin-bottom: 12px;
  }
  
  /* Sidebar */
  .sidebar-wrapper {
    padding: 15px 12px 18px;
    margin-bottom: 20px;
  }
  
  .sidebar .sidebar-widget {
    margin-bottom: 20px;
  }
  
  .sidebar .sidebar-widget ul li a {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .sidebar .sidebar-widget ul li a::before {
    font-size: 16px;
  }
  
  .sidebar .sidebar-qrcode-widget h3 {
    font-size: 15px;
  }
  
  .sidebar .sidebar-pdf-widget ul li {
    margin-bottom: 10px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a {
    padding: 10px 12px;
    padding-left: 55px;
    font-size: 12px;
  }
  
  .sidebar .sidebar-pdf-widget ul li a i {
    font-size: 28px;
    top: 6px;
    left: 12px;
  }
  
  .sidebar .services-contact {
    padding: 18px;
  }
  
  .sidebar .services-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  /* Gallery */
  .gallery-item {
    margin-bottom: 20px;
  }
  
  .gallery-thumb {
    border: 4px solid var(--white);
  }
  
  .gallery-content {
    bottom: 15px;
  }
  
  .gallery-content .title {
    font-size: 11px;
    line-height: 16px;
    margin-right: 10px;
  }
  
  .gallery-content .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }
  
  .gallery-content .icon i {
    font-size: 14px;
  }
  
  .icon-wraper {
    margin-right: 8px;
  }
  
  /* Contact */
  .map-area iframe {
    height: 300px;
  }
  
  .contact-us li {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .contact-us li i {
    font-size: 13px;
  }
  
  .contact-us li span,
  .contact-us li span a {
    font-size: 12px;
  }
  
  .offcanvas-title {
    font-size: 18px;
  }
  
  .offcanvas-bottom {
    max-height: 60vh;
    height: auto;
  }
  
  .offcanvas-body {
    padding: 1rem;
    max-height: 50vh;
  }
  
  .contact-slider .partner-item .card-title {
    font-size: 1rem;
    min-height: 2.5rem;
  }
  
  .contact-slider .partner-item .card-body {
    padding: 1rem;
  }
  
  .contact-slider .partner-item .contact-us li {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .section-footer {
    padding-top: 30px;
  }
  
  .section-footer .footer-widget {
    margin-bottom: 25px;
  }
  
  .section-footer .footer-widget .footer-logo {
    margin-bottom: 12px;
  }
  
  .section-footer .footer-widget p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .section-footer .footer-widget h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .section-footer .footer-widget .social-icon li {
    margin-right: 3px;
  }
  
  .section-footer .footer-widget .social-icon li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  
  .section-footer .footer-widget .import-link li {
    margin-bottom: 8px;
    font-size: 12px;
    padding-right: 16px;
  }
  
  .section-footer .footer-widget .address li {
    font-size: 12px;
    padding-right: 30px;
    margin-bottom: 4px;
  }
  
  .section-footer .footer-widget .address li i {
    font-size: 16px;
  }
  
  .copy-right-area {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .copy-right-area p {
    font-size: 11px;
  }
  
  /* Go Top */
  .go-top {
    width: 32px;
    height: 34px;
    line-height: 34px;
  }
  
  .go-top i {
    font-size: 16px;
  }
  
  .go-top.active {
    right: 1%;
    top: 86%;
  }
  
  /* Quick Chat */
  a.quick-chat,
  a.whatsapp-chat {
    bottom: 12px;
    left: 6px;
    font-size: 12px;
    padding: 6px 12px;
  }
  
  a.quick-chat i,
  a.whatsapp-chat i {
    margin: 0 0 0 6px;
    transform: scale(1.1);
  }
  
  /* Pagination */
  .pagination-area {
    margin-top: 6px;
  }
  
  .pagination-area .page-numbers {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    margin-left: 2px;
    margin-right: 2px;
  }
  
  .pagination-area .page-numbers i {
    font-size: 20px;
    top: 3px;
  }
  
  /* Featured Controls */
  .featured-button-next,
  .featured-button-prev {
    width: 36px;
    height: 36px;
  }
  
  .featured-button-next:after,
  .featured-button-prev:after {
    font-size: 16px;
  }
  
  .featured-controls--sidebar .featured-button-next,
  .featured-controls--sidebar .featured-button-prev {
    width: 28px;
    height: 28px;
  }
  
  /* Card Body */
  .card-body {
    min-height: 220px;
  }
  
  /* Position Relative */
  .position-relative {
    margin-top: 12px;
  }
  
  /* VH Utilities */
  .vh-70 {
    height: 45vh !important;
  }
  
  /* Utility Classes - Reduce spacing on mobile */
  .mt-30, .mt-40, .mt-50, .mt-60, .mt-70, .mt-80, .mt-90, .mt-100 {
    margin-top: 20px !important;
  }
  
  .mb-30, .mb-40, .mb-50, .mb-60, .mb-70, .mb-80, .mb-90, .mb-100 {
    margin-bottom: 20px !important;
  }
  
  .pt-30, .pt-40, .pt-50, .pt-60, .pt-70, .pt-80, .pt-90, .pt-100 {
    padding-top: 20px !important;
  }
  
  .pb-30, .pb-40, .pb-50, .pb-60, .pb-70, .pb-80, .pb-90, .pb-100 {
    padding-bottom: 20px !important;
  }
}

/* ============================================
   Landscape Orientation Adjustments
   ============================================ */
@media (max-width: 991px) and (orientation: landscape) {
  .section-slider {
    height: 100vh;
    min-height: 500px;
  }
  
  .section-slider .swiper-slide {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-slide__content {
    min-height: clamp(300px, 70vh, 500px);
  }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .section-slider,
  .go-top,
  a.quick-chat,
  a.whatsapp-chat,
  .section-footer,
  .mobile-nav-toggle {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .page {
    padding: 20px;
  }
}

