/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}








/* Import Gilroy font */
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

/* Import FontAwesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.seo-tabs-section {

 min-height: 600px !important;
  font-family: 'Gilroy', sans-serif;
  width: 100%;
  max-width: 1600px !important;
  background: #0a1f44;
  color: #fff;
  overflow-x: hidden; /* ✅ prevent global overflow */
}

.seo-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
 min-height: 600px !important;
  margin: 0 auto;

  overflow: hidden;
  box-sizing: border-box;
}

/* Sidebar Menu */
.seo-tabs-menu {
  
  flex: 0 0 280px;
  background: #0e204b;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.seo-tabs-menu .menu-heading {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1F5AD0;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.seo-tabs-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.seo-tabs-menu li {
  padding: 18px 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  color: #fff;
  width: 100%;
  word-break: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.seo-tabs-menu li .icon {
  font-size: 18px;
  color: #00aaff;
  min-width: 20px;
  text-align: center;
}

.seo-tabs-menu li.active,
.seo-tabs-menu li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #00aaff;
}

/* Right Content Area */
.seo-tabs-content {
  flex: 1;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.tab-panel {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 60px;
  color: #fff;
  animation: fadeIn 0.6s ease-in-out;
  box-sizing: border-box;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.6);
  z-index: 1;
}

.tab-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.tab-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.tab-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  }
  
 p.tab-text-seo-p {
        color: #fff;
}



.tab-text span {
  display: inline-block; /* allows margin & block styles */
  font-size: 60px;
  font-weight: 800;
  color: #00aaff;
  margin-bottom: 0px;
}


.btn-blue {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #00aaff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-blue:hover {
  background: #00aaff;
  color: #fff;
}

/* Fade-in effect for tab switch */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
  .seo-tabs-container {
    flex-direction: column;
    min-height: auto;
    overflow-x: hidden !important;
  }

  .seo-tabs-menu {
    flex: 0 0 auto;
    width: 100%;
  }

  .seo-tabs-menu li {
    font-size: 14px;
    padding: 14px 15px;
  }

  .seo-tabs-content {
    width: 100%;
    min-height: 400px;
    overflow-x: hidden !important;
  }

  .tab-panel {
    padding: 40px 20px;
  }

  .tab-text h1 {
    font-size: 40px;
  }

  .tab-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .seo-tabs-menu li {
    font-size: 13px;
    padding: 12px 12px;
  }

  .seo-tabs-menu li .icon {
    font-size: 16px;
  }

  .tab-text h1 {
    font-size: 28px;
  }

  .tab-text h2 {
    font-size: 18px;
  }

  .tab-text p {
    font-size: 14px;
  }
}
















/* Container */
.custom-slider {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 18px 10px;
}

/* Inner wrapper with fixed max width from attachment request */
.slider-wrapper {
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Track */
.slider-track {
  display: flex;
  align-items: center;
  /* gap between slides */
  gap: 24px;
  transition: transform 900ms ease-in-out; /* slower transition */
  will-change: transform;
  padding: 6px 8px;
  box-sizing: content-box;
}

/* Individual slide */
.slide {
  flex: 0 0 250px; /* 250px card width; fits into 1400px nicely */
  box-sizing: border-box;
}

/* Card appearance */
.slide-inner {
  height: 140px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  color: #fff;
  /* gradient like the attachment */
  background: linear-gradient(135deg, #0f1624 0%, #1a2235 50%, #263145 100%);
  box-shadow: 0 10px 25px rgba(12,18,30,0.45);
}

/* Image */
.slide-inner img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}

/* Title */
.slide-inner p {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}

/* Remove gap on last child if desired (not necessary because we use translate) */
.slider-track .slide:last-child {
  margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .slide { flex: 0 0 220px; }
  .slide-inner { height: 130px; }
}

@media (max-width: 900px) {
  .slide { flex: 0 0 200px; }
  .slide-inner { height: 120px; }
}

@media (max-width: 600px) {
  /* Show fewer/smaller cards on phones */
  .slide { flex: 0 0 160px; }
  .slide-inner { height: 110px; padding: 12px; }
}