/* section 1 */
.contact-sectionn {
  background: linear-gradient(135deg,
      #1e2a5e 0%,
      #2d4a8a 30%,
      #3b6bb8 60%,
      #2d4a8a 90%,
      #1e2a5e 100%);
  color: white;
  /* padding: 100px 0; */
  position: relative;
  overflow: hidden;
  /* min-height: 500px; */
  display: flex;
  align-items: center;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-breadcrumb {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff1a, #ffffff33);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  /* font-size: 14px; */
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(156, 39, 176, 0.2);
}

/* .contact-breadcrumb::before {
            content: "←";
            font-size: 16px;
            color: #398fc5;
            margin-right: 4px;
        } */

.section-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 0;
  color: #ffffff;
  letter-spacing: -0.01em;
  /* line-height: 1.1; */
}

.section-subtitle {
  font-size: 52px;
  font-weight: 700;
  color: #398fc5;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.contact-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 45px;
  font-size: 18px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  min-width: 160px;
}

.contact-btn-primary {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.contact-btn-primary:hover {
  background: #00acc1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.contact-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.geometric-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}


.shape-1 {
  top: 15%;
  left: 8%;
  width: 70px;
  height: 70px;
  background: rgba(0, 188, 212, 0.15);
  border-radius: 12px;
  transform: rotate(20deg);
  border: 1px solid rgba(0, 188, 212, 0.2);
  animation-name: floatY;
}

.shape-2 {
  top: 12%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(0, 188, 212, 0.2);
  animation-name: floatX;
  animation-delay: 1s;
}

.shape-3 {
  bottom: 20%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation-name: pulseShape;
}

.shape-4 {
  bottom: 15%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 212, 0.12);
  border-radius: 50%;
  animation-name: floatY;
  animation-delay: 0.5s;
}

.shape-5 {
  top: 45%;
  left: 3%;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transform: rotate(-15deg);
  animation-name: floatX;
}

.shape-6 {
  top: 55%;
  right: 5%;
  width: 25px;
  height: 25px;
  background: rgba(0, 188, 212, 0.15);
  border-radius: 50%;
  animation-name: pulseShape;
  animation-delay: 0.8s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(10px) rotate(-10deg);
  }
}

@keyframes pulseShape {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-sectionn {
    padding: 80px 0;
  }

  .contact-title,
  .contact-subtitle {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .contact-sectionn {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
    max-width: 600px;
  }

  .contact-description {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
  }

  /* Hide some shapes on mobile for cleaner look */
  .shape-5,
  .shape-6 {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-sectionn {
    padding: 50px 0;
  }

  .container {
    padding: 0 12px;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .geometric-shape {
    opacity: 0.2;
  }

  .shape-1 {
    width: 50px;
    height: 50px;
  }

  .shape-2 {
    width: 60px;
    height: 60px;
  }
}

.contact-btn:focus {
  outline: 2px solid #398fc5;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .contact-sectionn {
    background: linear-gradient(135deg, #000066 0%, #000099 50%, #0000cc 100%);
  }

  .contact-btn-primary {
    background: #00ffff;
    color: #000066;
  }
}

/* section 2 */
.conta-container {
  color: #333;
  max-width: 1600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.conta-container .title {
  color: #2a7ab0;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.conta-container .subtitle {
  font-size: 1.5em;
  color: #555;
  margin-bottom: 30px;
}

.branches-list h4,
.address-grid h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.address-card h4 {
  text-transform: uppercase;
}

.address-card h4:hover {
  color: #398fc5;
  cursor: pointer;
}

.branches-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.branches-list .branch-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.branches-list .column {
  flex: 1;
  min-width: 250px;
}

.branches-list p {
  margin: 5px 0;
  line-height: 1.6;
}

.branches-list strong {
  color: #000;
}

.branches-locations:hover {
  color: #398fc5;
  cursor: pointer;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.address-card {
  line-height: 1.6;
}

.address-card strong {
  color: #000;
}

.address-card p {
  margin: 0;
  color: #555;
}


@media (max-width: 992px) {
  .address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .conta-container .title {
    font-size: 2em;
  }

  .conta-container .subtitle {
    font-size: 1.2em;
  }

  .address-grid {
    grid-template-columns: auto auto auto;
  }
}

@media (max-width: 500px) {
  .address-grid {
    grid-template-columns: auto auto;

  }

  .address-card {
    border-bottom: 1px solid #dddbdb;

  }
}

@media (max-width: 375px) {
  .address-grid {
    grid-template-columns: auto;
  }
}

/* call us section  */

/* --- Call Us Section --- */
.call-us-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.call-us-section h4 {
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1em;
}

.contact-item .icon {
  margin-right: 10px;
  color: #888;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #2a7ab0;
}

.expert-counsellor {
  color: #777;
  margin-top: -5px;
  margin-left: 25px;
  margin-bottom: 25px;
  font-size: 0.9em;
}

.additional-support strong {
  display: block;
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
}

.additional-contacts-grid {
  display: flex;
  /* grid-template-columns: repeat(2, 1fr);  */
  gap: 10px 20px;
}

@media (max-width:768px) {
  .additional-contacts-grid {
    display: grid;
  }
}


/* form section */

.contact-form-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.container {
  max-width: 1400px;
  margin: 50px auto;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon1 {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 20px;
}

.contact-info-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-info-details {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.contact-info-subtitle {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 800px;
  margin: 20px auto;
}

.form-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  text-align: start;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: #ecfeff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #22d3ee;
  background: white;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 25px 0;
}

.form-checkbox {
  margin-top: 2px;
  accent-color: #22d3ee;
}

.checkbox-label {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.checkbox-label a {
  color: #22d3ee;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.submit-btn:hover {
  background: #06b6d4;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info-grid {
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .form-grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {


  .contact-info-card {
    padding: 20px 15px;
  }

  .contact-icon1 {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-info-title {
    font-size: 15px;
  }

  .contact-info-details {
    font-size: 12px;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 11px 14px;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    padding: 13px 24px;
    font-size: 14px;
  }
}

/* Loading state animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 1s linear infinite;
}

.success {
  background: #10b981 !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.submit-btn:focus {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {

  .contact-info-card,
  .contact-form-wrapper {
    border: 2px solid #333;
  }

  .form-input,
  .form-select,
  .form-textarea {
    border: 2px solid #666;
  }
}




/* .section 3 */
.office-section {
  background: white;
}

.office-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  gap: 32px;
}

.office-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.office-title .highlight {
  color: #22d3ee;
}

.office-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.office-address-section {
  margin-bottom: 35px;
}

.address-label {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.office-address {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.office-address p {
  margin: 4px 0;
  line-height: 1.5;

}

.office-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .office-container {
    padding: 30px 20px;
    gap: 24px;
  }

  .office-title {
    font-size: 28px;
  }

  .office-content {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .office-container {
    grid-template-columns: 1fr;
  }

  .office-content {
    padding: 30px 20px;
    order: 2;
  }

  .office-map {
    order: 1;
    min-height: 300px;
  }

  .office-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .office-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .address-label {
    font-size: 16px;
  }

  .office-address {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .office-container {
    padding: 20px 16px;
  }

  .office-title {
    font-size: 22px;
  }

  .office-description {
    font-size: 13px;
  }

  .office-content {
    padding: 20px 10px;
  }

  .office-map {
    min-height: 250px;
  }
}

/* High contrast support */
@media (prefers-contrast: high) {
  .office-section {
    border: 2px solid #333;
  }
}