/* Reset and Global Styles */ 
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 20px 0;
}

/* Navigation */

.navbar {
	position: fixed;
	width: 100%;
	z-index: 888;
	margin-top: 20px;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffd046;
	color: #241e4e;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	width: 95%;
	padding: 5px 20px 5px 20px;
	border-radius: 20px;
}

.logo a {
	font-size: 1.5rem;
	font-weight: bold;
	color: #000;
}

.logo img {
	max-height: 25px;
}

.nav-menu {
	list-style: none;
	display: flex;
}

.nav-menu li {
	margin-left: 20px;
}

.nav-menu li a {
	padding: 10px;
	transition: color 0.3s;
}

.nav-menu li a:hover {
	color: #960200;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-toggle span {
	height: 3px;
	width: 25px;
	background: #960200;
	margin-bottom: 4px;
	border-radius: 3px;
	transition: all 0.3s;
}

/* Hero Section */

.hero {
	height: 100vh;
	background: url('../images/building-hero-2.jpg') center center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.2);
}

.hero-content {
	position: relative;
	z-index: 1;
	width: 60%;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	color: #fff;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding: 0 20px;
}

.btn {
	background: #ce6c47;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.3s;
}

.btn:hover {
	background: #ffd046;
	color: #241e4e;
}

/* About & Services Section */

.about-services {
	padding: 30px 0;
	background: #eadaa2;
}

.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.about-text, .about-image {
	flex: 1;
	min-width: 280px;
}

.about-text h2 {
	font-size: 2.5rem;
	color: #000;
	padding: 40px 30px 40px 50px;
}

.about-image p {
	font-size: 1rem;
	line-height: 1.6;
	margin: 20px 0px 40px 0px;
}

.about-image .btn {
	align-self:center;
	margin: 100px auto;
}
.about-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Flexbox grid container */
.custom-grid {
display: flex;
gap: 20px;
margin: 20px 40px 0 40px;  /* Adjust vertical spacing as needed */
}

/* Left column takes up more space */
.column-left {
flex: 2;
}

/* Right column takes less space and stacks images vertically */
.column-right {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

/* Make images responsive */
.custom-grid img {
width: 100%;
height: auto;
display: block;
border-radius: 10px;
}

.column-left img {
	max-height: 80vh;
}


/* Portfolio Section */
.portfolio {
  padding: 40px 60px;
}
.portfolio h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #000;
}

/* Carousel Container */

.carousel {
	position: relative;
	max-width: 100%;
	margin: 40px auto;
	overflow: hidden;
}

.carousel h2 {
	color: #fff;
}

/* Slide Setup */

.carousel-slide {
	display: none;
	width: 100%;
	position: relative;
}

.carousel-slide.active {
	display: block;
	animatiohn: fadeIn 1s ease-in-out;
}

.carousel-slide img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 10px;
	max-height: 70vh;
}

/* Text Overlay for Larger Screens */

.slide-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #fff;
	text-align: center;
	background: #960200;
	padding: 20px;
	border-radius: 8px;
}

.slide-text h2 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}
.slide-text p {
	font-size: 1.2rem;
}

/* Fade Animation */
@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Carousel Controls */

.carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 3;
	padding: 0 20px;
}

.carousel-controls button {
	background-color: #241e4e;
	border: none;
	color: #fff;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 50%;
	font-size: 20px;
	transition: background 0.3s ease;
}

.carousel-controls button:hover {
	background-color: #960200;
}

/* Dot Navigation */
.carousel-dots {
	text-align: center;
	position: relative;
	width: 100%;
}
.carousel-dots .dot {
  display: none;
  widdfdth: 20vw;
  height: auto;
  margin: 0.5rem 1rem;
  background-color: rgba(0,0,0,0.5);
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.1s ease;
  padding: 5px 10px;
  color: #ffd046;
  justify-content: space-between;
}
.carousel-dots .dot.active {
  background-color: #241e4e;
}

.btn-container {
	text-align: center;
}

.btn-container a{
	padding: 10px 30%;
}


/* Testimonials / CTA Section */
.testimonials {
  padding: 60px 0;
  background: #ce6c47;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffd046;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.testimonial-cards .card {
  background: #eadaa2;
  padding: 20px 20px 5px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.testimonial-cards .card p {
  font-style: italic;
  margin-bottom: 10px;
  color: #000;
}
.testimonial-cards .card h4 {
  font-size: 1rem;
  color: #960200;
}
.cta-banner {
  background: #eadaa2;
  padding: 30px 20px;
  color: #fff;
  text-align:center;
}
.cta-banner h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

    /* Container for centering grid */
    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    /* Responsive Grid */
    .cta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    /* Grid Item Styling */
    .cta-grid-item {
      background: #241e4e;
      padding: 20px;
      text-align: center;
      border-radius: 8px;
    }
    
    /* Header: Number and Line */
    .cta-grid-item .cta-header {
      margin-bottom: 15px;
	  color: #fff;
    }
    
    .cta-grid-item .cta-header .cta-number {
      font-size: 2rem;
      font-weight: bold;
	  color: #ffd046;
    }
    
    .cta-grid-item .cta-header .cta-line {
      width: 80%;
      height: 3px;
      background: #960200;
      margin: 10px auto;
    }
    
    /* Text Styling */
    .cta-grid-item .cta-text {
      margin-bottom: 15px;
      font-size: 1rem;
	  color: #fff;
    }
    
    /* Image Styling */
    .cta-grid-item .cta-image img {
      width: 100%;
      border-radius: 10px;
      display: block;
	  max-height: 20vh;
    }

/* Footer */
footer {
  background: #241e4e;
  color: #fff;
  padding-top: 40px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}
.footer-container > div {
  flex: 1;
  min-width: 200px;
}
footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd046;
}
.footer-contact p, .footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-social ul {
  list-style: none;
  padding: 0;
}
.footer-social ul li {
  margin-bottom: 10px;
}
.footer-social ul li a {
  color: #fff;
  font-size: 0.9rem;
}
.footer-newsletter form {
  display: flex;
  flex-direction: column;
}
.footer-newsletter input[type="email"] {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 3px;
}
.footer-newsletter button {
  padding: 10px;
  border: none;
  background: #960200;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  background: #222;
}