/*
Theme Name:   SV Child
Theme URI:    http://example.com/
Description:  SV Child Theme
Author:       Your Name
Author URI:   http://example.com/
Template:     sv
Version: 1.0.1
Text Domain: sv-child
*/

/* === Import Rubik font === */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

:root {
  /* Typography Variables */
  --Font-Family-Body: 'Rubik', sans-serif;
  --Font-Size-Body-B2: 16px;
  --Font-Weight-Regular: 400;
  --Line-Height-3: 24px;

  /* Color Variables */
  --Text-Primary-Inverse: #F6F6F6;
  --Text-Primary: #101C30; /* Example for dark text */
  --Font-Family-Heading: 'Rubik', Arial, Helvetica, sans-serif;
  --Font-Size-Heading-H1: 68px;
  --Font-Weight-Bold: 700;
}

/* Reusable Body/B2 Typography */
.body-b2 {
  font-family: var(--Font-Family-Body);
  font-size: var(--Font-Size-Body-B2) !important;
  font-style: normal;
  font-weight: var(--Font-Weight-Regular) !important;
  line-height: var(--Line-Height-3);
  margin-bottom: 0;
}

/* Text color utilities */
.text-primary-inverse {
  color: var(--Text-Primary-Inverse);
}
.text-primary {
  color: var(--Text-Primary);
}

body {
  font-family: 'Rubik', sans-serif !important;
}
@media (min-width: 769px) {
    
        
    h1, .banner-slider-heading {
      color: var(--Text-Primary-Inverse, #F6F6F6) !important;
      font-family: var(--Font-Family-Heading, Rubik) !important;
      font-size: var(--Font-Size-Heading-H1, 68px) !important;
      font-style: normal !important;
      font-weight: var(--Font-Weight-Bold, 700) !important;
      line-height: normal !important;
    }
    
    h2 {
      color: #131313 !important;
      font-family: var(--Font-Family-Font-Family-Heading, Rubik) !important;
      font-size: var(--Font-Size-Heading-H2, 48px) !important;
      font-style: normal !important;
      font-weight: var(--Font-Weight-Bold, 700) !important;
      line-height: normal !important;
    }
    
    h4, .h4-text {
        color:  #131313 !important;
    
    /* Heading/H4 (SB) */
    font-size: var(--Font-Size-Heading-H4, 32px) !important;
    font-style: normal !important;
    font-weight: var(--Font-Weight-Semibold, 600) !important;
    line-height: var(--Line-Height-6, 36px) !important; /* 112.5% */
    }
}

.sh1 {
    color: #131313 !important;

/* Subheading/SH1 (SB) */
font-size: var(--Font-Size-Heading-H6, 20px);
font-style: normal;
font-weight: var(--Font-Weight-Semibold, 600);
line-height: var(--Line-Height-3, 24px); /* 120% */
}
.b2 {
    color:  #6D6D6D;
    /* Body/B2 */
    font-family: var(--Font-Family-Font-Family-Body, Rubik);
    font-size: var(--Font-Size-Body-B2, 16px);
    font-style: normal;
    font-weight: var(--Font-Weight-Regular, 400);
    line-height: var(--Line-Height-3, 24px); /* 150% */
}
p {
    text-align: justify !important;
}

/* === Modern CSS Reset === */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul[role='list'], ol[role='list'] { list-style: none; }
body { min-height: 100vh; text-rendering: optimizeSpeed; line-height: 1.5; }
a:not([class]) { text-decoration-skip-ink: auto; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Custom 1280px container */
.container-1280 {
    z-index: 900;
    position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /*padding-left: 24px;*/
  /*padding-right: 24px;*/
  box-sizing: border-box;
}
section {
    padding: 80px 0 !important;
    position:relative;
    overflow: hidden;
}
@media (max-width: 1400px) {
  .container-1280 { 
      /*max-width: 100vw; */
      
  }
}
@media (max-width: 768px) {
    section {
    padding: 48px 0 !important;
    }
  .container-1280 { padding-left: 12px; padding-right: 12px; }
  h1 {
    color: var(--Text-Primary-Inverse, #F6F6F6);
    /* Heading/H3 */
    font-family: var(--Font-Family-Font-Family-Heading, Rubik);
    font-size: var(--Font-Size-Heading-H3, 40px) !important;
    font-style: normal;
    font-weight: var(--Font-Weight-Semibold, 600);
    line-height: normal;
  }
  h2 {
      color: #131313;
    /* Heading/H4 (SB) */
    font-family: var(--Font-Family-Font-Family-Heading, Rubik);
    font-size: var(--Font-Size-Heading-H4, 32px) !important;
    font-style: normal;
    font-weight: var(--Font-Weight-Semibold, 600);
    line-height: var(--Line-Height-6, 36px); /* 112.5% */
  }
}

@media (min-width: 768px) and (max-width:1399px) {
      .container-1280 { padding-left: 12px; padding-right: 12px; }
}

/* Import parent theme styles */
@import url("../sv/style.css");

/* Custom styles for child theme */
/* Add your custom CSS here */

/* Example: Custom button styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Example: Custom post styling */
.post {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

/* Example: Custom navigation styling */
.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Example: Custom footer styling */
#footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 2rem 0;
}

/* Example: Custom header styling */
.navbar-brand {
    font-weight: bold;
}

/* Example: Custom sidebar styling */
.sidebar {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.375rem;
}

/* Example: Custom form styling */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Example: Custom card styling */
.card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Example: Custom pagination styling */
.pagination .page-link {
    color: #007bff;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Example: Custom comment styling */
.comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Example: Custom search form styling */
.search-form .form-control {
    border-radius: 0.375rem 0 0 0.375rem;
}

.search-form .btn {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Example: Custom responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .post {
        padding: 1rem;
    }
    
    .sidebar {
        margin-top: 2rem;
    }
}

/* Example: Custom dark mode support (if enabled) */
@media (prefers-color-scheme: dark) {
    .post {
        background-color: #212529;
        border-color: #495057;
        color: #f8f9fa;
    }
    
    .sidebar {
        background-color: #212529;
        color: #f8f9fa;
    }
}

.banner-slider-desc {
  margin-bottom: 32px;
  max-width: 600px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.swiper-button-prev,
.swiper-button-next {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 22px;
  height: 16px;
  display: block;
}
.swiper-pagination {
  color: #fff;
  font-size: 1rem;
  min-width: 60px;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 16px;
}
.swiper-pagination-banner {
  color: #fff;
  font-size: 1rem;
  min-width: 60px;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 16px;
}

.banner-slider-controls {
  position: relative;
  bottom:0;
  width: 50%;
  /*left: 93%;*/
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  z-index: 4;
  padding-right: 0;
  height: 44px;
  bottom: 30px;
}

.banner-slider-controls .swiper-pagination-banner {
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 400;
  background: none !important;
  min-width: 90px;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
        position: relative;
            bottom: 2px;
    width: 10%;

}
.banner-slider-content-wrap, .banner-slider-controls {
    width: 50%;
}
.banner-slider-controls .swiper-button-prev,
.banner-slider-controls .swiper-button-next {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
        position: relative;
    width: 5%;
}

.banner-slider-controls .swiper-button-prev img,
.banner-slider-controls .swiper-button-next img {
  width: 22px;
  height: 16px;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}

/*news and update section*/




@media (max-width: 991px) {
  .banner-slider-controls {
    bottom: 16px;
    gap: 20px;
    padding-right: 8px;
    height: 36px;
  }
  .banner-slider-controls .swiper-pagination-banner {
    font-size: 1rem;
    min-width: 70px;
    margin: 0 8px;
    height: 36px;
  }
  .banner-slider-controls .swiper-button-prev,
  .banner-slider-controls .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}

.banner-slider-gradient-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #00000063 100%)

} 


p, .text-secondary {
  text-align: justify;
}


.btn.disabled, .btn:disabled, .wp-block-button .disabled.wp-block-button__link, .wp-block-button .wp-block-button__link:disabled, .wp-block-button fieldset:disabled .wp-block-button__link, fieldset:disabled .btn, fieldset:disabled .wp-block-button .wp-block-button__link {
border-radius: 0px !important;    
}

.ceo-text-style p{
    text-align: left !important;
}

.sv-navbar .dropdown-menu {
     margin-top: 0px !important;
}

    

