/*
Theme Name: Kamnar Construction
Theme URI: 
Author: Apil
Author URI: https://apilchand.com.np
Description: A custom WordPress theme built for showcasing my portfolio.
Version: 1.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom, portfolio, responsive, modern
*/

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
:root {
  --primary-color: #16497b;
  --secondary-color: #f6911d;
  --secondary-color-light: #f8c35f;
  --white: #fff;
  --black: #000;
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #666;
  --light-gray: #f9f9f9;
  --dark-bg: #111;
  --dark-bg-lighter: #51616e;
  --footer-accent: #ff8800;
  --footer-accent-hover: #e67300;
  --section-spacing: 60px;
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 12px;
  --border-radius-xl: 16px;
  --border-radius-circle: 50px;
  --box-shadow-sm: 0px 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-md: 0px 8px 20px rgba(0, 0, 0, 0.15);
  --box-shadow-lg: 0px 15px 30px rgba(0, 0, 0, 0.2);
  --transition-standard: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  font-family: "Raleway", sans-serif !important;
  font-size: 16px !important;
}

a {
  text-decoration: none !important;
  transition: var(--transition-standard);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.flex-center {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background-color: var(--primary-color);
  padding: 1rem 0;
}

.navbar .navbar-brand img {
  height: 80px;
}

.navbar .nav-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar .nav-item {
  margin-right: 15px;
}

.navbar .nav-item:last-child {
  margin-right: 0;
}

.navbar .nav-link.active {
  color: var(--secondary-color) !important;
}

/* ==========================================================================
   HERO/BANNER SECTION
   ========================================================================== */
.banner-section .carousel-wrap {
  background-repeat: no-repeat;
  background-size: cover;
	background-position: center center;
  height: 550px;
  padding: 0;
}

.banner-section .banner-content {
  max-width: 855px;
}

.banner-section h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 50.88px;
  text-align: left;
}

.banner-section p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.banner-btn a {
  padding: 1rem 2rem;
  color: var(--white);
  font-weight: 700;
  background-color: var(--secondary-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-circle);
  font-family: var(--secondary-font);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.companyInfo {
  display: flex;
  gap: 10px;
}

.socialMedia {
  text-align: center;
}

.socialMedia a {
  margin: 0 10px;
  color: var(--white);
  font-size: 14px;
}

/* ==========================================================================
   ADS/CALL TO ACTION SECTION
   ========================================================================== */
.ads-section {
  background-color: var(--secondary-color);
  padding: 0;
  margin: 50px 0;
}

.ads-section .ads-content {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  box-shadow: 0 20px 50px rgba(246, 166, 14, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ads-section .ads-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 5, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  animation: rotateBg 30s linear infinite;
  opacity: 0.5;
}

.ads-section .ads-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 35px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.ads-section .ads-content .btn {
  background-color: var(--white);
  color: #e07000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--border-radius-circle);
  border: 2px solid var(--white);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  box-shadow: var(--box-shadow-md);
  overflow: hidden;
}

.ads-section .ads-content .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  transition: var(--transition-standard);
  z-index: -1;
}

.ads-section .ads-content .btn:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.ads-section .ads-content .btn:hover::before {
  left: 100%;
}


/**
 * About Section Styles
 * Professional layout for company presentation
 */
.about-section {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Create subtle background pattern for visual interest */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 73, 123, 0.05) 0%, rgba(22, 73, 123, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Image styling with enhanced shadows and hover effect */
.about-section img {
  border-radius: var(--border-radius-medium);
  box-shadow: var(--box-shadow-md);
  transition: var(--transition-smooth);
  transform: perspective(1000px) rotateY(-2deg);
}

.about-section img:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: var(--box-shadow-lg);
}

/* Content layout and spacing */
.about-content {
  padding-left: 1.5rem;
}

/* Animated underline for section title */
.section-title {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Typography for paragraph text */
.section-text {
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Button styling with animation */
.section-button {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-circle);
  background: linear-gradient(to right, var(--primary-color), var(--primary-color) 50%, var(--secondary-color) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-button:hover {
  background-position: 0%;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-md);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
  padding: 3rem 0;
  background-color: #2d4b65;
}

.why-section h3 {
  font-size: 32px;
  color: var(--secondary-color);
}

.why-section .service-box {
  background-color: var(--dark-bg-lighter);
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-medium);
  margin-bottom: 1.5rem;
}

.why-section .service-box h3 {
  margin-top: 10px;
}

.why-section .service-box p {
  color: var(--white);
  margin-bottom: 0;
}

.choose-section .card-box {
  margin: 1.5rem 0;
}

.choose-section .card-box h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================================
   REVIEW SECTION
   ========================================================================== */
.review-section {
  background: linear-gradient(135deg, #f6a60e, #e8941a);
  padding: 5rem 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--box-shadow-md);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("");
  opacity: 0.3;
  z-index: 0;
}

.review-section h1 {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.review-section i {
  font-size: 60px;
  color: var(--white);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: var(--transition-standard);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-section i:hover {
  transform: scale(1.15) rotate(5deg);
}

.review-section .review-content {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 320px;
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background: linear-gradient(145deg, rgba(45, 75, 101, 0.9), rgba(35, 60, 80, 0.95));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: var(--transition-standard);
}

.review-section .review-content:hover {
  transform: translateY(-5px);
}

.review-section .review-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-section .review-content .wrap {
  max-width: 700px;
  width: 100%;
}

.review-section .user-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.review-section .user-info img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f6a60e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-standard);
}

.review-section .user-info img:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--white);
}

.review-section .user-details h3 {
  color: #f6a60e;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.review-section .user-details p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Carousel Controls Enhancement */
.review-section .carousel-indicators {
  bottom: -40px;
}

.review-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
}

.review-section .carousel-indicators button.active {
  background-color: var(--white);
  transform: scale(1.2);
}

.review-section .carousel-control-prev,
.review-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(246, 166, 14, 0.7);
  border-radius: 50%;
  top: 45%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.review-section .carousel-control-prev {
  left: 20px;
}

.review-section .carousel-control-next {
  right: 20px;
}

.review-section .carousel-control-prev:hover,
.review-section .carousel-control-next:hover {
  background-color: rgba(246, 166, 14, 0.9);
  opacity: 1;
}

.review-section .carousel-control-prev-icon,
.review-section .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   PROJECT SECTION
   ========================================================================== */
.project-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}
.project-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}
.project-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}
.project-section .row {
  margin-top: 30px;
}
.project-section .col-md-3 {
  padding: 20px;
  transition: var(--transition-standard);
}
.project-section .col-md-3:hover {
  transform: translateY(-10px);
}
.project-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--box-shadow-sm);
  margin-bottom: 15px;
  
  /* New properties for consistent 3:4 portrait ratio */
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  display: block;
}
.project-section h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
}

/* Add a subtle divider instead of empty columns */
.project-section .col-md-3:not(:last-child) {
  position: relative;
}

.project-section .col-md-3:not(:last-child)::after {
  content: '';
  display: none;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-section {
  background-color: var(--primary-color);
  padding: 90px 0;
}

.service-wrap {
  background-color: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition-standard);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-wrap:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-md);
}

.service-wrap img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.service-wrap h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  padding: 20px 25px 10px;
  margin: 0;
}

.service-wrap p {
  padding: 0 25px 25px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
}

/* ==========================================================================
   WHAT WE DO SECTION
   ========================================================================== */
.what-section {
  padding: 100px 0;
  background-color: var(--white);
}

.what-section .text-center {
  margin-bottom: 70px;
}

.what-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.what-section h3.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.what-section .text-center h3.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.what-section-wrap {
	 padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  background-color: var(--white);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-standard);
  border: 0.5px solid var(#f9f9f9);
}

.what-section-wrap:hover {
  box-shadow: var(--box-shadow-md);
  transform: translateX(8px);
}

.what-section-wrap img {
	 padding: 5px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
  background-color: #f9fafb;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-section-wrap img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}



.what-section-wrap .content {
  padding: 25px 30px;
}

.what-section-wrap h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-weight: 600;
}

.what-section-wrap p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-medium);
}

/* ==========================================================================
   ABOUT PAGE SECTIONS
   ========================================================================== */
/* Page Banner */
.page-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out forwards;
}

.page-banner h2 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 1px;
}

.page-banner h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #f6a60e, #f8c35f);
  border-radius: 3px;
  animation: expandWidth 0.8s ease-out forwards;
}

/* About Page Section */
.about-page {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-page::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 166, 14, 0.1) 0%, rgba(246, 166, 14, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.about-page h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-page h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f6a60e, #f8c35f);
  border-radius: 2px;
}

.about-page .col-md-6 {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  padding-right: 30px;
}

.about-page img {
  border-radius: var(--border-radius-large);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.1), -25px -25px 50px rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  width: 100%;
  height: auto;
}

.about-page img:hover {
  transform: scale(1.03);
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.15), -30px -30px 60px rgba(255, 255, 255, 0.9);
}

/* Why About Section */
.why-about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  position: relative;
  overflow: hidden;
}

.why-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%233a86ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

.why-about-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246, 166, 14, 0.07) 0%, rgba(246, 166, 14, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-about-section .container {
  position: relative;
  z-index: 1;
}

.why-about-section h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-about-section h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #f6a60e, #f8c35f);
  border-radius: 3px;
}

.why-about-section .col-md-6 {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-about-section .col-md-6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #f6a60e, #f8c35f);
  transition: height 0.4s ease;
  z-index: -1;
}

.why-about-section .col-md-6:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-md);
}

.why-about-section .col-md-6:hover::before {
  height: 100%;
}

.why-about-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  transition: var(--transition-standard);
}

.why-about-section .col-md-6:hover h3 {
  color: #f6a60e;
  transform: translateX(5px);
}

.why-about-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(to bottom, #f6a60e, #f8c35f);
  border-radius: 3px;
}

.why-about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 0;
  transition: var(--transition-standard);
}

.why-about-section .col-md-4 img {
  transition: var(--transition-smooth);
 display: block;
  width: auto;
  height: auto;
  max-width: auto;
  max-height: auto;
  position: absolute;
  top: 0;
  left: 20%;
}

.why-about-section .col-md-4 img:hover {
  transform: scale(1.03);
  box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15), -30px -30px 80px rgba(255, 255, 255, 0.8);
}

/*Contact page*/
/* Contact Section Styles */
.contact-section {
  padding: 80px;
}

.contact-section h3 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.contact-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-section p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
  }

  .contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .contact-item {
    display: flex;
    align-items: center;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
  }

  .contact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #eeeeee;
  }

  .contact-item i {
    font-size: 32px;
    color: #3f51b5;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(63, 81, 181, 0.08);
    padding: 20px;
  }

  .contact-content {
    flex: 1;
  }

  .contact-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
  }

  .contact-content p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .contact-card {
      grid-template-columns: 1fr;
    }
    
    .contact-item:not(:last-child)::after {
      width: 80%;
      height: 1px;
      right: 10%;
      top: auto;
      bottom: 0;
    }
    
    .contact-item {
      padding: 25px 20px;
    }
  }

/* Contact Form Styles */
.contact-form {
  background-color: #DADCDD;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 50px !important;
}

.form-control {
  border-radius: var(--border-radius);
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

.form-label {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.banner-btn {

  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-btn:hover {
  transform: translateY(-2px);
}

.banner-btn a {
  color: white;
  text-decoration: none;
}

/* Google Map Section Styles */
.map-section {
  padding: 10px 0;
  background-color: var(--light-color);
}

.map-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.map-section .section-title h2 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.map-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.map-section .section-title p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.google-map {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 300px;
  z-index: 2;
}

.map-overlay h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.map-overlay p {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments for map */
@media (max-width: 767px) {
  .map-container {
    height: 350px;
  }
  
  .map-overlay {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    margin-top: -30px;
    margin-bottom: 30px;
  }
  
  .map-section .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 50px 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer i {
  color: var(--footer-accent);
  margin-right: 8px;
}

.social-icons a {
  color: var(--white);
  font-size: 18px;
  margin-right: 10px;
  transition: var(--transition-standard);
}

.social-icons a:hover {
  color: var(--footer-accent);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: var(--transition-standard);
}

.footer-links li:hover,
.social-icons a:hover {
  color: var(--footer-accent);
}


.footer img {
  max-width: 200px;
  margin-bottom: 2rem;
}

.footer form {
  display: flex;
  flex-direction: column;
}

.footer input,
.footer button {
  padding: 8px;
  border: none;
  border-radius: var(--border-radius-small);
}

.footer input {
  width: 100%;
  margin-bottom: 10px;
}

.footer button {
  background-color: var(--footer-accent);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-standard);
}

.footer button:hover {
  background-color: var(--footer-accent-hover);
}

.footer-bottom {
  background-color: var(--black);
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer-bottom span {
  color: var(--footer-accent);
  font-weight: 700;
}
