/*---------------------------------------------------------------------
  File Name: style.css
---------------------------------------------------------------------*/

/*---------------------------------------------------------------------
  import Fonts
---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
@font-face {
  font-family: "Righteous";
  src: url("../fonts/BalooChettan-Regular.ttf");
}

/*---------------------------------------------------------------------
  Base Reset and Global Styles
---------------------------------------------------------------------*/
* {
  box-sizing: border-box !important;
  transition: ease all 0.5s;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #666;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  font-weight: normal;
  overflow-x: hidden;
  padding-top: 80px; /* to prevent overlap with fixed header */
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  color: #111;
  margin: 0;
  padding-bottom: 10px;
  line-height: normal;
}

p {
  margin: 20px 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}

ul, li, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*---------------------------------------------------------------------
  Header Section
---------------------------------------------------------------------*/

/* === Fixed Sticky Header === */
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_area img {
  height: 50px;
}

.contact_icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact_icons img {
  height: 30px;
  width: 30px;
  transition: transform 0.2s ease;
}

.contact_icons img:hover {
  transform: scale(1.1);
}

/*---------------------------------------------------------------------
  Banner Section
---------------------------------------------------------------------*/
.banner_section {
  width: 100%;
  float: left;
  padding-bottom: 100px;
}

.banner_taital {
  font-size: 50px;
  color: #191616;
  font-weight: bold;
}

.banner_text {
  font-size: 16px;
  color: #191616;
  margin-top: 20px;
}

.btn_main {
  margin-top: 50px;
}

.read_bt, .contact_bt {
  float: left;
  margin-right: 15px;
}

.read_bt a, .contact_bt a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  background-color: #191616;
  text-transform: uppercase;
  text-align: center;
}

.read_bt a:hover, .contact_bt a:hover {
  background-color: #e4e219;
  color: #fff;
}

.contact_bt.active a {
  background-color: #e4e219;
}

/*---------------------------------------------------------------------
  About Section
---------------------------------------------------------------------*/
.about_section {
  width: 100%;
  float: left;
  padding: 90px 0;
}

.about_taital {
  font-size: 40px;
  color: #191616;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.about_text {
  text-align: center;
  color: #191616;
  font-size: 16px;
}

.image_1, .image_2 {
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

.readmore_bt {
  width: 170px;
  margin: 40px auto 0;
  text-align: center;
}

.readmore_bt a {
  font-size: 18px;
  color: #fff;
  background-color: #191616;
  padding: 8px 5px;
  text-transform: uppercase;
}

.readmore_bt a:hover {
  background-color: #e4e219;
}

/*---------------------------------------------------------------------
  Blog Section
---------------------------------------------------------------------*/
.blog_section {
  width: 100%;
  float: left;
  background-image: url(../images/blog-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 100px;
}

.blog_taital {
  text-align: center;
  font-size: 40px;
  color: #191616;
  font-weight: bold;
  text-transform: uppercase;
}

.blog_text {
  text-align: center;
  font-size: 16px;
  color: #191616;
  margin-bottom: 50px;
}

.image_4, .image_5 {
  background-color: #000;
  text-align: center;
  padding: 40px;
}

.laptop_text {
  font-size: 30px;
  color: #2a2929;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}

.ipsum_text {
  font-size: 16px;
  color: #191616;
  margin-top: 15px;
}

.read_bt_2 a {
  font-size: 18px;
  color: #fff;
  background-color: #191616;
  padding: 8px 5px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}

.read_bt_2 a:hover {
  background-color: #e4e219;
}

/*---------------------------------------------------------------------
  Repair Section
---------------------------------------------------------------------*/
.repair_section {
  padding: 90px 0;
}

.repair_taital {
  font-size: 40px;
  color: #191616;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.repair_text {
  text-align: center;
  color: #191616;
  font-size: 16px;
}

.image_7 {
  text-align: center;
  padding: 50px 0;
}

/*---------------------------------------------------------------------
  Footer Section
---------------------------------------------------------------------*/
.footer_section {
  width: 100%;
  float: left;
  background-color: #171717;
  padding: 80px 0;
}

.footer_location_text ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer_location_text li {
  color: #fff;
  font-size: 16px;
}

.footer_location_text a {
  color: #fff;
}

.footer_location_text a:hover {
  color: #e4e219;
}

/*---------------------------------------------------------------------
  Copyright Section
---------------------------------------------------------------------*/
.copyright_section {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.copyright_text {
  font-size: 16px;
  color: #0b0b0c;
}

.copyright_text a {
  color: #0b0b0c;
}

.copyright_text a:hover {
  color: #e4e219;
}
