/*
Theme Name: Seriously Selfie
Author: CH Muneeb
Description: A Project build with love 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: selfie
*/

/* global styling */
body,
html {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 26px;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  padding-bottom: 20px;
  font-family: "Libre Baskerville", serif;
}
p {
  margin: 0;
  padding-bottom: 14px;
  font-weight: 400;
}
a {
  text-decoration: none;
  font-weight: 500;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="input"] {
  background: transparent;
  font-weight: 500;
  border: 0;
  box-shadow: none;
}
.d-flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.just-center {
  justify-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-end {
  justify-content: flex-end;
}
.container {
  width: 1650px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
img {
  max-width: 100%;
}
.btn {
  padding: 12px 32px;
  background-color: transparent;
  border: 2px solid transparent;
  color: black;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
.btn-primary {
  background-color: #2cddd0;
  border-color: #2cddd0;
  color: black;
}
.btn-primary:hover {
  background-color: transparent;
  color: #2cddd0;
}
.btn-white {
  background-color: white;
  color: black;
  border-color: white;
}
.btn-white:hover {
  background-color: transparent;
  color: white;
}
.text-center {
  text-align: center;
}
.pb-0 {
  padding-bottom: 0;
}
.uppercase {
  text-transform: uppercase;
}
.text-white {
  color: white;
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent !important;
}
.header-content {
  padding: 20px 0;
}
.header--content--logo,
.header-navbar,
.header-content--btn {
  flex: 1;
}
.header--content--logo img {
  width: 220px;
  object-fit: contain;
  display: block;
  overflow: hidden;
}
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.menu li a {
  font-size: 18px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
.menu li a:hover {
  color: #2cddd0;
}
.current_page_item a {
  color: #2cddd0 !important;
}

/* hero section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-content-abs {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
}
.hero-content {
  max-width: 600px;
  color: #ffffff;
}
.hero_title {
  font-size: 60px;
  line-height: 85px;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.hero-btn a:first-child {
  background-color: white;
  color: black;
  border-color: white;
}
.hero-btn a:first-child:hover {
  background-color: transparent;
  color: white;
}
.hero-btn a:last-child {
  background-color: #2cddd0;
  border-color: #2cddd0;
  color: black;
}
.hero-btn a:last-child:hover {
  background-color: transparent;
  color: #2cddd0;
}

/* quality */
.quality {
  margin: 100px 0;
}
.section_title {
  font-size: 50px;
  line-height: 70px;
}
.section_text {
  font-size: 20px;
  line-height: 34px;
}
.quality-content {
  margin-top: 40px;
  gap: 90px;
}
.quality-content--image,
.quality-content--content {
  flex: 1;
}
.quality-content--image img {
  width: 100%;
  display: block;
  overflow: hidden;
  object-fit: cover;
}
.quality_title {
  font-size: 45px;
  line-height: 65px;
}
.quality-repeater {
  margin-top: 30px;
}
.quality-repeater--item {
  gap: 20px;
  margin-bottom: 30px;
}
.quality_item_image {
  width: 32px;
}
.quality_item_image img {
  width: 100%;
  display: block;
  overflow: auto;
  object-fit: contain;
}
.quality-repeater--item p {
  width: 100%;
}

/* services */
.services {
  background-color: #eef1f5;
  padding: 120px 0;
}
.section_subtitle {
  font-size: 34px;
  line-height: 54px;
  font-weight: 400;
}
.services-content {
  margin-top: 50px;
  gap: 40px;
}
.services-content--item {
  width: 29%;
  text-align: center;
  background-color: #ffffff;
  padding: 30px 60px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.services_item_image {
  margin-bottom: 25px;
}
.services_item_image img {
  height: 140px;
  width: 100%;
  object-fit: contain;
  display: block;
  overflow: hidden;
}
.services-content--item h4 {
  height: 100px;
}
.subtitle {
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
}

/* experience */
.experience {
  margin: 100px 0;
}
.experience-content {
  gap: 40px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-between;
}
.experience-content--item {
  width: 31%;
  text-align: center;
  position: relative;
  display: block;
  overflow: hidden;
}
.experience-content--item:hover img {
  transform: scale(1.1);
}
.experience_item_image {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.experience-content--item img {
  width: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 20px;
}
.experience_item_content {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 30px;
}
.experience-content--item:last-child {
  width: 100%;
}
.experience h1 {
  width: 50%;
  margin: 0 auto;
}

/* provide */
.provide {
  background-color: #eef1f5;
  padding: 100px 0;
}
.provide-content--content,
.provide-content--image {
  flex: 1;
}
.provide-content {
  margin-right: 80px;
  gap: 20px;
}
.provide_repeater {
  margin-top: 50px;
}
.provide-content--item {
  background-color: #ffffff;
  padding: 25px 30px;
  gap: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in;
}
.provide-content--item:hover {
  transform: translateY(-5px);
}
.provide-content--item img {
  width: 40px;
  object-fit: contain;
  display: block;
  overflow: hidden;
}
.provide-content--item p {
  width: 100%;
}

/* testimonials */
.testimonials {
  margin: 120px 0;
}
.testimonials-content {
  margin-top: 30px;
}
.myTestimonials {
  padding: 30px 0;
}
.testi_item {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  text-align: center;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transition: 0.4s ease-in-out;
}
.testimonials .swiper-slide-active {
  border-top: 8px solid #2cddd0;
  border-bottom: 8px solid #2cddd0;
  background-color: #f7f7f7;
}
.testi_image {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.testi_image img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

/* offer */
.offer {
  margin: 120px 0;
}
.offer-content {
  text-align: center;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 30px;
  padding: 60px 20px;
}
.offer_icon {
  margin-bottom: 30px;
}
.offer_icon img {
  width: 100px;
}
.offer_button {
  margin-top: 20px;
}

/* event */
.event {
  background-color: #eef1f5;
  padding: 100px 0;
}
.event h1,
.event h3 {
  width: 60%;
  margin: 0 auto;
}
.event-content {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.event-content--item {
  width: 30%;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.event-content--item:hover img {
  transform: scale(1.1);
}
.event-content--item img {
  transition: 0.3s ease-in;
  width: 100%;
  display: block;
  overflow: hidden;
}

/* video */
.video {
  margin: 120px 0;
}
.video-content a {
  margin: 50px 0;
  display: block;
}
.video_btn a {
  display: inline-block;
  margin: 0;
}

/* blog */
.blogs {
  background-color: #eef1f5;
  padding: 120px 0;
}
.blog-content {
  margin-top: 60px;
  gap: 30px;
}
.first-blog {
  width: 65%;
}
.blog-content--repeater {
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
}
.blog-item {
  width: 48%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  display: block;
}
.blog_item_image {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
}
.blog-item:hover img {
  transform: scale(1.05);
}
.blog-item a {
  color: black;
}
.first-blog .blog-item {
  width: 100%;
  height: 100%;
}
.blog-item img {
  width: 100%;
  display: block;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.blog-content--repeater h3 {
  font-size: 20px;
  line-height: 35px;
}
.date {
  font-size: 18px;
  line-height: 28px;
  padding-top: 8px;
}

/* footer */
.footer {
  background-color: #2cddd0;
  padding-top: 80px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-content--logo,
.footer-content-content {
  flex: 1;
}
.quick {
  display: flex;
  justify-content: center;
}
.follow {
  display: flex;
  justify-content: flex-start;
}
.footer-content--logo IMG {
  width: 220px;
}
.footer_text {
  padding-top: 20px;
  font-size: 18px;
  line-height: 30px;
}
.copyright {
  padding-top: 35px;
}
.copyright p {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.footer_subtitle {
  font-size: 23px;
  text-transform: uppercase;
  line-height: 34px;
}
.quick_links li {
  margin-bottom: 10px;
}
.quick_links li a {
  font-size: 16px;
  line-height: 30px;
  color: black;
  transition: 0.3s ease-in-out;
}
.quick_links li a:hover {
  opacity: 0.8;
}
.footer-image img {
  width: 100%;
  display: block;
  overflow: hidden;
}
.socials {
  gap: 15px;
  margin-bottom: 30px;
}
.socials-item img {
  width: 40px;
}

.banner {
  position: relative;
  text-align: center;
  color: white;
  height: 400px;
}
.banner-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner img {
  filter: brightness(70%); /* Image thori dark taake text saaf dikhe */
  height: 400px;
  object-fit: cover;
	object-position: top center;
  width: 100%;
}

.posts {
  margin: 80px 0;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

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

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

.post-thumbnail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.post-content {
  padding: 20px;
}
.post-content h2 {
  font-size: 20px;
  line-height: 35px;
  padding-bottom: 10px;
}
.post-content h2 a {
  text-decoration: none;
  color: #333;
}
.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #0073aa;
  font-weight: bold;
  text-decoration: none;
}

.single header {
  position: relative;
}
.single .menu li a {
  color: #333;
}
.single .mobile-menu-toggle .bar {
  background-color: #333;
}
.single-posts {
  margin: 80px 0;
}
.single-content {
  width: 60%;
}
.category a {
  color: #2cddd0;
}
.single-image {
  width: 80%;
  margin: 20px 0;
}
.single-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  text-align: left;
}

/* contact */
.contact {
  margin: 80px 0;
}
.contact-content {
  gap: 120px;
}
.contact-form input,
.contact-form textarea {
  width: 100% !important;
  height: 100% !important;
  padding: 14px 20px !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  outline: none !important;
  border-radius: 10px !important;
}
.contact-form textarea {
  height: 120px !important;
}
.contact-form,
.contact-content-image {
  flex: 1;
}
.contact-content-image img {
  width: 100%;
}
.wpforms-submit {
  width: 100% !important;
  height: 100% !important;
  padding: 14px 20px !important;
  background-color: #2cddd0 !important;
  transition: 0.3s ease-in !important;
  border-radius: 10px !important;
  font-size: 20px !important;
}

@media only screen and (max-width: 1440px) {
  .container {
    width: 1280px;
  }
  .btn {
    padding: 10px 30px;
    font-size: 16px;
  }
  .hero {
    height: 150vh;
  }
  .header-navbar {
    flex: 1.5;
  }
  .hero_title {
    font-size: 50px;
    line-height: 70px;
  }
  .quality {
    margin: 80px 0;
  }
  .section_title {
    font-size: 40px;
    line-height: 60px;
  }
  .quality-content {
    gap: 60px;
  }
  .quality_title {
    font-size: 38px;
    line-height: 60px;
  }
  .section_text {
    font-size: 18px;
    line-height: 30px;
  }
  .quality-repeater--item {
    gap: 15px;
    margin-bottom: 20px;
  }
  .quality_item_image {
    width: 26px;
  }
  .services {
    padding: 100px 0;
  }
  .section_subtitle {
    font-size: 30px;
    line-height: 48px;
  }
  .services_item_image img {
    height: 110px;
  }
  .subtitle {
    font-size: 20px;
    line-height: 35px;
  }
  .services-content--item {
    padding: 25px 40px;
  }
  .experience {
    margin: 80px 0;
  }
  .experience h1 {
    width: 80%;
  }
  .experience-content {
    gap: 30px;
  }
  .provide-content--item {
    padding: 20px 25px;
    margin-bottom: 25px;
  }
  .provide_repeater {
    margin-top: 30px;
  }
  .testimonials {
    margin: 80px 0;
  }
  .testi_image {
    width: 100px;
  }
  .testi_item p {
    font-size: 16px;
    line-height: 28px;
  }
  .offer-content {
    padding: 50px 20px;
  }
  .offer_icon img {
    width: 80px;
  }
  .event {
    padding: 80px 0;
  }
  .event h1,
  .event h3 {
    width: 65%;
  }
  .event-content {
    margin-top: 50px;
  }
  .video {
    margin: 80px 0;
  }
  .video-content a {
    margin: 40px 0;
  }
  .video_btn a {
    margin: 0;
  }
  .video-content img {
    width: 80%;
  }
  .blogs {
    padding: 80px 0;
  }
  .blog-content {
    margin-top: 50px;
    gap: 20px;
  }
  .blog-content--repeater {
    gap: 20px;
  }
  .blog-content--repeater h3 {
    font-size: 18px;
    line-height: 32px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer_text {
    font-size: 16px;
    line-height: 30px;
  }
  .footer_subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  .quick_links li a {
    font-size: 15px;
    line-height: 30px;
  }
  .copyright p {
    padding-bottom: 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-content--btn {
    display: none;
  }
  .header-navbar {
    display: flex;
    justify-content: flex-end;
  }
  .hero_bg_item,
  .hero {
    height: 65vh;
  }
  .hero_title {
    font-size: 40px;
    line-height: 60px;
  }
  .single-content {
    width: 100%;
  }
}
/* General Header Styles */
.header-content {
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

/* Hamburger Hidden by Default */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #ffffff; /* Change to match your brand color */
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Hamburger Animation (Active state) */
.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media only screen and (max-width: 820px) {
  .mobile-menu-toggle {
    display: flex; /* Show hamburger on mobile */
  }
  .header-navbar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 400px;
    height: 100vh;
    background: #2cddd0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    padding-top: 80px;
    flex-direction: column;
    justify-content: flex-start !important;
  }
  /* When menu is active */
  .header-navbar.active {
    right: 0;
  }
  .main-menu ul {
    flex-direction: column;
    padding: 0 20px;
  }
  .main-menu ul li {
    margin: 5px 0;
  }
	.main-menu ul li a:hover{
		    color: #333 !important;
	}
  .header-content--btn {
    display: none; /* Hide button on mobile or move inside navbar */
  }
  .current_page_item a {
    color: #333 !important;
  }
  .quality {
    margin: 70px 0;
  }
  .section_title {
    font-size: 36px;
    line-height: 56px;
  }
  .quality h1 {
    text-align: left;
  }
  .quality-content {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 10px;
  }
  .quality_title {
    font-size: 30px;
    line-height: 55px;
  }
  .quality-repeater {
    margin-top: 15px;
  }
  .quality-content--image {
    width: 100%;
  }
  .section_subtitle {
    font-size: 25px;
    line-height: 40px;
  }
  .services {
    padding: 80px 0;
  }
  .services-content {
    margin-top: 40px;
  }
  .services-content--item {
    width: 47%;
  }
  .services_item_image img {
    height: 90px;
  }
  .services-content--item h4 {
    height: 90px;
  }
  .experience-content--item {
    width: 48%;
  }
  .experience h1 {
    width: 100%;
  }
  .provide {
    padding: 80px 0;
  }
  .provide-content {
    flex-direction: column-reverse;
    margin: 0;
    gap: 30px;
  }
  .provide-content--content {
    padding: 0 30px;
  }
  .provide-content--item img {
    width: 30px;
  }
  .provide-content--item {
    gap: 20px;
  }
  .offer-content {
    padding: 40px 20px;
  }
  .offer_icon {
    margin-bottom: 10px;
  }
  .event h1,
  .event h3 {
    width: 100%;
  }
  .event-content--item {
    width: 48%;
  }
  .event-content {
    margin-top: 30px;
  }
  .video {
    margin: 70px 0;
  }
  .video-content a {
    margin: 30px 0;
  }
  .video_btn a {
    margin: 0;
  }
  .video-content img {
    width: 100%;
  }
  .first-blog {
    width: 100%;
  }
  .blog-content {
    flex-direction: column;
  }
  .blog-content-text p {
    width: 70%;
  }
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form,
  .contact-content-image {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .experience-content--item {
    width: 47%;
  }
}

@media only screen and (max-width: 640px) {
  .btn {
    padding: 8px 22px;
    font-size: 15px;
  }
  .hero_bg_item,
  .hero {
    height: 53vh;
  }
  .hero_title {
    font-size: 25px;
    line-height: 38px;
  }
  .header--content--logo img {
    width: 140px;
  }
  .header-navbar {
    width: 300px;
  }
  .quality {
    margin: 60px 0;
  }
  .section_title {
    font-size: 25px;
    line-height: 40px;
  }
  .quality_title {
    font-size: 20px;
    line-height: 35px;
  }
  .quality-repeater {
    margin-top: 0;
  }
  .section_text {
    font-size: 14px;
    line-height: 28px;
  }
  .quality_item_image {
    width: 20px;
  }
  .services {
    padding: 50px 0;
  }
  .section_subtitle {
    font-size: 18px;
    line-height: 32px;
  }
  .services-content--item {
    width: 100%;
  }
  .services_item_image img {
    height: 70px;
  }
  .services-content--item h4 {
    height: auto;
  }
  .services-content {
    gap: 20px;
  }
  .services-content {
    margin-top: 30px;
  }
  .experience-content {
    margin-top: 30px;
  }
  .experience-content--item {
    width: 100%;
  }
  .experience-content--item:last-child .experience_item_image img {
    height: 340px;
    object-fit: cover;
    object-position: center right;
  }
  .provide {
    padding: 60px 0;
  }
  .provide-content--item {
    padding: 15px 20px;
  }
  .provide-content--item p {
    font-size: 16px;
    line-height: 30px;
  }
  .offer {
    margin: 80px 0;
  }
  .offer_icon img {
    width: 60px;
  }
  .event-content--item {
    width: 100%;
  }
  .video {
    margin: 60px 0;
  }
  .video h1 {
    padding-bottom: 0;
  }
  .blog-content-text {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .blog-item {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .footer {
    padding-top: 50px;
  }
  .footer_text {
    font-size: 15px;
    line-height: 28px;
  }
  .footer-content--logo img {
    width: 180px;
  }
  .copyright {
    padding-top: 10px;
  }
  .footer_subtitle {
    font-size: 18px;
  }
  .socials-item img {
    width: 35px;
  }
  .posts {
    margin: 40px 0;
  }
  .post-content h2 {
    font-size: 18px;
    line-height: 32px;
  }
  .read-more {
    margin-top: 0;
  }
  .single-posts {
    margin: 50px 0;
  }
  .single-image {
    width: 90%;
    margin: 10px 0;
  }
  .posts-grid {
    padding: 30px 0;
  }
  .provide_repeater {
    margin-top: 10px;
  }
  .blog-content-text p {
    width: 100%;
  }
  .testimonials-content {
    margin-top: 0;
  }
  .testi_item {
    padding: 25px 20px;
  }
  .testimonials .swiper-slide-active {
    border-top: 4px solid #2cddd0;
    border-bottom: 4px solid #2cddd0;
  }
  .testi_item p {
    font-size: 14px;
    line-height: 24px;
  }
  .myTestimonials {
    padding: 25px 20px;
  }
  .offer_button {
    margin-top: 15px;
  }
  .contact {
    margin: 40px 0;
  }
  .contact-content{
    gap: 30px;
  }
  .contact-form input, .contact-form textarea{
    padding: 12px 16px !important;
    font-size: 16px !important;
  }
  .wpforms-submit{
    padding: 12px !important;
    font-size: 18px !important;
  }
  .banner,
  .banner img{
    height: 320px;
  }
	.hero-content-abs{
		top: 25px;
	}
	.hero-btn{
		margin-top: 10px;
	}
}
/* Existing CSS mein koi change nahi karna, bas ye neechay add kar dein */

.site-header {
    transition: all 0.3s ease-in-out; /* Smooth transition ke liye */
}

/* Jab scroll ho tab ye apply hoga */
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000 !important; /* Yahan apna pasandida color rakhein */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.site-header.sticky .header-content {
    padding: 10px 0; /* Scroll par header thora chota ho jayega */
}