/*
Theme Name: Geethai Groups
Theme URI: https://www.geethaigroups.com
Author: Geethai Groups
Author URI: https://www.geethaigroups.com
Description: Official theme for Geethai Groups Builders & Developers
Version: 2.0
License: GPL v2 or later
Text Domain: geethai-groups
*/

/* Theme Colors */
:root {
  --primary-color: #1a5a7a; /* Dark Blue */
  --secondary-color: #e6b325; /* Golden Yellow */
  --accent-color: #2e8b57; /* Green */
  --dark-color: #333333; /* Dark Gray */
  --light-color: #f8f9fa; /* Light Gray */
  --text-color: #333333;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  padding-top: 80px; /* For fixed header */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary-color);
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-30 {
  margin-bottom: 30px;
}
.padding-80 {
  padding: 80px 0;
}
.bg-light {
  background-color: var(--light-color);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}
/* Theme Colors */
:root {
  --primary-color: #1a5a7a; /* Dark Blue */
  --secondary-color: #e6b325; /* Golden Yellow */
  --accent-color: #2e8b57; /* Green */
  --dark-color: #333333; /* Dark Gray */
  --light-color: #f8f9fa; /* Light Gray */
  --text-color: #333333;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

/* For fixed header on all pages */
body:not(.home) {
  padding-top: 130px; /* Adjust based on your header height */
}

body.home {
  padding-top: 0;
}
/* About Page Styles */
.page-about {
  background-color: var(--white);
}

.page-about .section-padding {
  padding: 100px 0;
}

.page-about .section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.page-about .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.page-about .text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.page-about .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Page Styles */
.page-contact-us {
  background-color: var(--white);
}

/* Services Page Styles */
.page-services {
  background-color: var(--white);
}

/* Gallery Page Styles */
.page-gallery {
  background-color: var(--white);
}

/* Active Menu Fix for Mobile */
@media (max-width: 992px) {
  .primary-menu .menu-item.current-menu-item a,
  .primary-menu .menu-item.current-page-item a {
    color: var(--primary-color);
    font-weight: 700;
  }

  .primary-menu .menu-item.current-menu-item a:after,
  .primary-menu .menu-item.current-page-item a:after {
    width: 100%;
  }
}
