/* ============================
   Projects Section Styling
============================ */


body {
  font-family: 'Josefin Sans', sans-serif;
}
/* Header */

/* Section Wrapper */
.projects {
  padding: 60px 10%;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.projects-header h2 {
  font-size: 28px;
  color: #2c2c2c;
  font-weight: 600;
}

.projects-header .view-all {
  font-size: 14px;
  color: #1a2a6c;
  text-decoration: none;
  font-weight: 500;
}

.projects-header .view-all i {
  margin-left: 5px;
}

/* Filter Buttons */
.projects-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #1a2a6c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #E6B122;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #1a2a6c;
  color: #fff;
}

.filter-btn.active{
      background: #1a2a6c;
  color: #fff;
}

/* Grid */


/* Project Card */

.project-image {
  position: relative;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.badge-yellow { background: #f4b400; }
.badge-orange { background: #f4b400; }
.badge-blue { background: #f4b400; }

.project-content {
  padding: 18px;
}






/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}



/* Contact Section */
.contact-section {
  padding: 60px 8%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Left Image */
.contact-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Right Form */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.form-group input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b88d2b;
  box-shadow: 0 0 6px rgba(184,141,43,0.2);
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;   /* Aligns checkbox & text in the same line */
  gap: 8px;              /* Space between checkbox and label */
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;        /* Prevents checkbox from shrinking */
  margin: 0;             /* Removes weird browser margins */
}

.form-check label {
  margin: 0;
  cursor: pointer;
}

.form-check a {
  color: #1a2a6c;
  text-decoration: none;
  font-size: 14px;
}

.form-check a:hover {
  text-decoration: underline;
}

/* Button */
.send-btn {
  background: #f5b700;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #d99a00;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


.why-coimbatore {
  font-family: "Poppins", sans-serif;
  padding: 60px 8%;
  background: #fff;
  color: #2c3e50;
  margin-top:-70px;
}

/* Top Heading Row */
.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 20px;
}

.top-row .left {
  flex: 1;
  min-width: 220px;
}

.top-row .right {
  flex: 2;
  min-width: 300px;
  padding-left: 20px;
  border-left: 1px solid #ddd; /* vertical divider */
}

.subtitle {
  color: #f39c12;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.top-row h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.top-row h2 span {
  color: #28367B;
  font-size: 30px;
}

.top-row .right p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.card .icon {
  font-size: 22px;
  color: #f39c12; /* golden icons */
  margin-top: 15px;
}

/* CTA */
.cta {
  text-align: center;
}

.cta .small {
  color: #f39c12;
  font-size: 14px;
  margin-bottom: 5px;
}

.cta h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.cta .btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background: #d35400;
}
