    * {
        margin: 0;
        font-family: 'Segoe UI', Tahoma, sans-serif;
    }

    header h1 {

        margin: 0;
        font-size: 30px;
    }

    .containerr {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .containerr .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .containerr .card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

    .card:hover {
        transform: translateY(-8px);
    }

    .title {
        font-size: 22px;
        font-weight: bold;
        color: #0a3d62;
        margin-bottom: 10px;
    }

    .highlight {
        font-size: 24px;
        font-weight: bold;
        color: #5dade2;
        margin-bottom: 15px;
    }

    ul {
        padding-left: 18px;
        margin-bottom: 20px;
    }

    ul li {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .btn {
        display: inline-block;
        text-decoration: none;
        background: #5dade2;
        color: white;
        padding: 10px 18px;
        border-radius: 25px;
        font-size: 14px;
        transition: 0.3s;
    }

    .btn:hover {
        background: #3c6382;
    }

    .badge {
        position: absolute;
        top: 15px;
        right: -30px;
        background: #5dade2;
        color: white;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .btn {
            margin-left: 30px;
        }
    }






















    /* exp css */

    .cont {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        text-align: center;
    }

    .cont .header h1 {
        font-size: 36px;
        color: #5dade2;
        /* matched with previous header color */
        margin-bottom: 10px;
    }

    .cont .header p {
        font-size: 18px;
        color: #555;
        margin-bottom: 50px;
    }

    .cta-buttons {
        margin: 30px 0;
    }

    .cta-buttons a {
        display: inline-block;
        margin: 10px 15px;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        background: #5dade2;
        /* matched button color */
        border-radius: 30px;
        transition: 0.3s;
    }

    .cta-buttons a:hover {
        background: #3498db;
        /* slightly darker on hover */
    }

    .cont .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }

    .feature-card {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 40px;
        color: #5dade2;
        /* matched icon color */
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #2c3e50;
    }

    .feature-card p {
        font-size: 15px;
        color: #555;
    }





















    /* member */

    .contain {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .contain .card {
        display: flex;
        flex-wrap: wrap;
        flex-direction:row;
        gap: 20px;
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        align-items: center;
        transition: transform 0.2s ease;
    }

    .contain .card:hover {
        transform: translateY(-5px);
    }

    .contain .image-box {
        flex: 1 1 220px;
        text-align: center;
    }

    .contain  .image-box img {
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        border: 3px solid #5dade2;
    }

    .contain .content {
        flex: 2 1 500px;
    }

    .contain .role-title {
        font-size: 22px;
        font-weight: bold;
        color: #5dade2;
        margin-bottom: 8px;
    }

   .contain .subtitle {
        font-size: 16px;
        font-weight: 600;
        color: #555;
        margin-bottom: 10px;
    }

   .contain .description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .contain .skills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }

    .contain .skill {
        background: #5dade2;
        color: #eaf2fb;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;

    }

    .contain .icons {
        display: flex;
        gap: 15px;
    }

    .contain .icons i {
        background: #5dade2;
        color: white;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .contain .icons i:hover {
        background: #3c6382;
    }


    @media (max-width: 768px) {
        .contain .card {
            flex-direction: column;
            text-align: center;
        }

       .contain  .icons {
            justify-content: center;
            align-items: center;

        }
    }

















    /* abouts */



    .contains {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .contains .card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
    }

    /* LIGHT BLUE HEADER */
    .header-box {
        /*background: #5dade2;*/
        /* light blue */
        /*color: white;*/
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 25px;
    }

    .header-box h1 {
        margin: 0;
        font-size: 35px;
        text-align:center;
        color:#124265;
    }

    .header-box p {
        margin-top: 10px;
        font-size: 15px;
        opacity: 0.95;
        text-align:center;
    }

    .about-text {
        line-height: 1.7;
        font-size: 15px;
    }

    .contains .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }

    .feature {
        background: #eaf4fd;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: #2e86c1;
    }

    .cta {
        text-align: center;
        margin-top: 30px;
    }

    /* LIGHT BLUE BUTTON */
    .btn {
        display: inline-block;
        text-decoration: none;
        background: #5dade2;
        color: white;
        padding: 12px 22px;
        border-radius: 30px;
        font-size: 15px;
        transition: 0.3s;
    }

    .btn:hover {
        background: #3498db;
        /* slightly darker blue */
    }
















    /* title */




    .containers {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        text-align: center;
    }

   .containers .header h1 {
        font-size: 32px;
        color: #3498db;
        margin-bottom: 10px;
    }

  .containers  .header p {
        font-size: 18px;
        color: #555;
        margin-bottom: 50px;
    }

    .containers .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    .stat-card {
        background: white;
        padding: 40px 20px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card i {
        font-size: 50px;
        color: #3498db;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 36px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 16px;
        color: #7f8c8d;
    }




























/* branch */
    .con {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .con .header {
        background: #5dade2;
        color: white;
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .con .header h1 {
        margin: 0;
    }

    .con .header p {
        margin-top: 8px;
        font-size: 15px;
    }

    .con .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .card {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .branch-name {
        font-size: 18px;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 10px;
    }

    .hq {
        color: #e67e22;
    }

    .info {
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    .info i {
        margin-right: 8px;
        color: #5dade2;
        min-width: 20px;
        text-align: center;
    }

    .contact {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact span {
        display: block;
        margin-bottom: 4px;
    }

    .direction a {
        display: inline-block;
        text-decoration: none;
        color: white;
        background: #5dade2;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        margin-top: 5px;
        transition: 0.3s;
    }

    .direction a:hover {
        background: #3498db;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*form styles*/
    
    
    
 .contact-section {
  background-color: var(--color-bg);
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ff6f00" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.contact-wrapper {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.contact-info {
  flex: 1;
  background: var(--gradient-dark);
  padding: 60px 40px;
  color: var(--color-white);
}

.contact-info .section-title {
  font-size: 2.2rem;
}

.info-block {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.info-block h4 {
  color: var(--color-white);
  margin-bottom: 5px;
}

.info-block p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
  flex: 1.5;
  padding: 60px;
  background: var(--color-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background-color: #FAFAFA;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.1);
}

.error-msg {
  color: #DC3545;
  font-size: 0.8rem;
  opacity: 0; /* Hidden by default */
  transform: translateY(-5px);
  transition: all var(--transition-fast);
}

.error-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-group.error input,
.form-group.error textarea {
  border-color: #DC3545;
}

.submit-btn {
  width: auto;
  align-self: flex-start;
  margin-top: 10px;
}

.btnsubmit{
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

}