* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
  font-family: teko-bold;
  src: url(Teko/static/Teko-Bold.ttf);
}
@font-face {
  font-family: teko-light;
  src: url(Teko/static/Teko-Light.ttf);
}
@font-face {
  font-family: teko-medium;
  src: url(Teko/static/Teko-Medium.ttf);
}
@font-face {
  font-family: teko-regular;
  src: url(Teko/static/Teko-Regular.ttf);
}
@font-face {
  font-family: teko-semibold;
  src: url(Teko/static/Teko-SemiBold.ttf);
}

@font-face {
  font-family: playfair-display;
  src: url(Playfair_Display/static/PlayfairDisplay-Regular.ttf);
}
@font-face {
  font-family: playfair-display-semibold;
  src: url(Playfair_Display/static/PlayfairDisplay-SemiBold.ttf);
}
.heading-container {
  padding: 10px 20px 0 20px;
  line-break: loose;
}
.teko-regular {
  font-family: teko-regular;
}
.btn {
  background: linear-gradient(to right, #e95108, #ff9640);
  transition: all 0.3s ease;
}
.bt:active {
  scale: 0.95;
}
.spacer {
  height: 100vh;
}
.hov {
  border-bottom: 1px solid rgba(158, 158, 158, 0.594);
  padding-left: 10%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hov:hover {
  background-color: rgba(158, 158, 158, 0.594);
}
.hov-col:hover {
  color: #e95108;
}

/* POP UP FORM */
/* IGL Modal Custom Styles */
.igl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(91, 91, 91, 0.9); /* #5B5B5B with opacity */
  z-index: 9999;
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.igl-modal-container {
  background: white;
  width: 100%;
  max-width: 850px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.igl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  color: #5b5b5b;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.igl-modal-flex {
  display: flex;
  min-height: 500px;
}

/* Left Section */
.igl-info-panel {
  flex: 1;
  background-color: #5b5b5b;
  background-image: linear-gradient(135deg, #5b5b5b 0%, #3d3d3d 100%);
  color: white;
  padding: 60px 40px;
  display: flex;
  align-items: center;
}

.igl-tag {
  background: #f75101;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.igl-info-content h3 {
  font-size: 42px;
  margin: 20px 0;
  line-height: 1.1;
}

.igl-highlight {
  color: #f75101;
}

.igl-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.igl-features li {
  margin-bottom: 12px;
  font-size: 16px;
  opacity: 0.9;
}

/* Right Section (Form) */
.igl-form-panel {
  flex: 1.2;
  padding: 60px 50px;
}

.igl-main-form h2 {
  color: #5b5b5b;
  font-size: 28px;
  margin-bottom: 5px;
}

.igl-main-form p {
  color: #888;
  margin-bottom: 30px;
}

.igl-input-group {
  margin-bottom: 20px;
}

.igl-input-group input,
.igl-input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.igl-input-group input:focus {
  border-color: #f75101;
  outline: none;
}

.igl-submit-btn {
  width: 100%;
  background: #f75101;
  color: white;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(247, 81, 1, 0.3);
  transition:
    transform 0.2s,
    background 0.3s;
}

.igl-submit-btn:hover {
  background: #d64500;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .igl-modal-flex {
    flex-direction: column;
  }
  .igl-info-panel {
    display: none;
  }
  .igl-form-panel {
    padding: 40px 25px;
  }
}
