/* Modal Button Custom Style */
.custom-modal-btn {
    display: block;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
}

.custom-modal-btn:hover {
    background: var(--dark);
    color: var(--light);
    transform: scale(1.05);
}

/* Secondary Button */
.custom-modal-btn.secondary {
    background: var(--dark);
}

.custom-modal-btn.secondary:hover {
    background: var(--primary);
}


/* apply */

/* Wrapper */
.form-wrapper {
    background: var(--light);
    padding: 60px 15px;
}

/* Container */
.form-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Headings */
.form-container h1 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-container h2 {
    margin: 20px 0;
    color: var(--primary);
}

/* Form group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: var(--dark);
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(6,187,204,0.3);
    outline: none;
}

/* Two column name */
.input-row {
    display: flex;
    gap: 10px;
}

.input-row input {
    flex: 1;
}

/* Checkbox section */
.program-column label {
    display: block;
    padding: 8px 10px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.program-column label:hover {
    background: var(--light);
}

/* Button */
.submit-group button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    transition: 0.3s;
}

.submit-group button:hover {
    background: var(--dark);
}

/* HR */
hr {
    border: none;
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
    }
}

/* index page service section fix */
.service-item {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.service-item .p-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.country-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.country-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.country-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #cf9759;
}

.country-card img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.country-card h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
}

.country-card p {
    font-size: 14px;
    color: #52565b;
    margin: 0;
    font-weight: 500;
}

.country-card:hover {
    background: #06BBCC;
}

.country-card:hover h3,
.country-card:hover p {
    color: #fff;
}





/* about */

/* SECTION */
.who-elegant {
  padding: 80px 20px;
  background: #f9fcfd; /* light tone using your palette idea */
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #181d38; /* dark */
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 15px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 30px;
}

/* vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #06BBCC; /* primary */
}

/* ITEM */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

/* dot */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #06BBCC;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e6f7f9;
}

/* TITLE */
.timeline-item h4 {
  font-size: 18px;
  color: #181d38;
  margin-bottom: 8px;
  font-weight: 600;
}

/* TEXT */
.timeline-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* HOVER EFFECT */
.timeline-item:hover h4 {
  color: #06BBCC;
}

.timeline-item:hover::before {
  transform: scale(1.2);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 26px;
  }

  .timeline {
    padding-left: 20px;
  }
}

/* mobile screen arrow responsive(index page) */
/* Mobile screen e arrow hide */
@media (max-width: 768px) {
    .header-carousel .owl-nav {
        display: none !important;
    }
}


.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* height ratio (1:1) */
    overflow: hidden;
    border-radius: 10px; /* optional */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* testimonial */

/* terms&condition */

.terms-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.terms-container h1 {
    text-align: center;
    margin-bottom: 5px;
}

.terms-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
    color: #666;
}

.terms-section {
    margin-bottom: 25px;
}

.terms-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
}


/* privacy policy */

.privacy-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-container h1 {
    text-align: center;
    margin-bottom: 5px;
}

.privacy-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
    color: #666;
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.privacy-section h4 {
    margin-top: 10px;
    font-size: 15px;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 6px;
}
