/*------------------------------ For Call us ------------------------------*/

.call-us-box {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.call-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e67300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.call-us-box:hover .call-icon {
    transform: scale(1.05);
}

.call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-text span {
    font-size: 13px;
    font-weight: 700;
    color: #7d8793;
    text-transform: uppercase;
}

.call-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #0d2b5c;
}


          /* Modern Company Profile Styles */
          
          .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
          }
          
          .vm-card {
            background: #fff;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
          }
          
          .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--main-color);
            transition: width 0.3s ease;
            z-index: 0;
          }
          
          .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
          }
          
          .vm-card:hover::before {
            width: 10px;
          }
          
          .vm-card .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(var(--main-color-rgb, 247, 148, 30), 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 30px;
            color: var(--main-color);
          }
          
          .vm-card h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--secondary-color);
          }
          
          .vm-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
          }
          
          /* Core Values Section */
          .values-section {
            padding: 100px 0;
            background: #fff;
          }
          
          .section-header {
            text-align: center;
            margin-bottom: 60px;
          }
          
          .section-header h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 15px;
          }
          
          .section-header .divider {
            width: 60px;
            height: 4px;
            background: var(--main-color);
            margin: 0 auto;
            border-radius: 2px;
          }
          
          .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
          }
          
          .value-item {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
          }
          
          .value-item:hover {
            background: #fff;
            border-color: var(--main-color);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transform: translateY(-5px);
          }
          
          .value-item .icon {
            font-size: 40px;
            color: var(--main-color);
            margin-bottom: 25px;
            display: block;
          }
          
          .value-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
          }
          
          .value-item p {
            font-size: 15px;
            color: #777;
            line-height: 1.6;
          }

          /* Mobile Responsive */
          @media (max-width: 991px) {
            .about-grid, .vm-grid {
              grid-template-columns: 1fr;
            }
            .about-image-area {
              order: -1;
            }
            .profile-container, .vision-mission-section, .values-section {
              padding: 60px 0;
            }
          }

          /* Modal Background */
          .team-modal {
            display: none; 
            position: fixed; 
            z-index: 9999; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0, 0, 0, 0.6); 
            backdrop-filter: blur(5px); /* የበስተጀርባውን ገጽ ያደበዝዘዋል */
            align-items: center;
            justify-content: center;
          }

          /* Modal Content Box */
          .team-modal .modal-content {
            background-color: #fff;
            margin: auto;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 750px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: modalFadeIn 0.4s ease-out;
          }

          /* Animations */
          @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
          }

          /* Close Button */
          .team-modal .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            color: #333;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
          }
          .team-modal .close-modal:hover {
            color: #ff3e3e;
          }

          /* Flexbox Layout inside Modal */
          .team-modal .modal-body-container {
            display: flex;
            gap: 30px;
            margin-top: 15px;
          }

          /* Left Side: Image and Social Icons */
          .team-modal .modal-intro {
            flex: 1;
            text-align: center;
            max-width: 250px;
          }
          .team-modal .modal-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          }
          .team-modal .modal-icons {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 12px;
          }
          .team-modal .modal-icons a {
            width: 35px;
            height: 35px;
            line-height: 35px;
            background: #f4f4f4;
            color: #333;
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
            text-align: center;
          }
          .team-modal .modal-icons a:hover {
            background: #007bff; /* የድርጅትህን ዋና ከለር እዚህ ተካው */
            color: #fff;
            transform: translateY(-3px);
          }

          /* Right Side: Information */
          .team-modal .modal-information {
            flex: 2;
          }
          .team-modal #modalName {
            font-size: 26px;
            margin-bottom: 5px;
            color: #222;
          }
          .team-modal .modal-role {
            font-size: 16px;
            color: #007bff;
            font-weight: 600;
            margin-bottom: 15px;
          }
          .team-modal .modal-divider {
            border: 0;
            height: 1px;
            background: #eee;
            margin-bottom: 15px;
          }
          .team-modal .modal-text {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
          }

          /* Responsive for Mobile Devices */
          @media (max-width: 768px) {
            .team-modal .modal-body-container {
              flex-direction: column;
              align-items: center;
            }
            .team-modal .modal-intro {
              max-width: 100%;
            }
            .team-modal .modal-content {
              padding: 20px;
            }
          }
/*------------------------------ Services Dropdown ------------------------------*/


/* Ensure the main dropdown can show the fly-out menu */
.dropdown-content {
    overflow: visible !important;
    /* Prevents the sub-menu from being cut off */
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

/* Position each sector item as the anchor for its sub-menu */
.sector-item {
    position: relative;
    list-style: none;
}

/* Hide sub-services by default */
.sub-services {
    display: none;
    position: absolute;
    top: 0;
    /* Aligns top of sub-menu with top of sector name */
    left: 100%;
    /* Pushes sub-menu to the right of the main menu */
    width: 250px;
    background: #fff;
    border-left: 1px solid #ddd;
    box-shadow: 5px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    z-index: 101;
}

/* SHOW sub-services when hovering over the sector item */
.sector-item:hover>.sub-services {
    display: block;
}

/* Style the links inside the sub-menu */
.sub-services li {
    list-style: none;
}

.sub-services li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.sub-services li a:hover {
    background-color: #f8f9fa;
    color: #004085;
    /* Or your primary theme color */
}

/* Float the arrow to the right for a clean look */
.float-end {
    float: right;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.5;
}

@media (min-width: 992px) {
    /* Paste the CSS from step 1 here */
}

/* style.css.sub-services  */
.sub-services {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: max-content;
    /* ይሄ ጽሁፉ ከባግራውንዱ እንዳያልፍ ያደርገዋል */
    min-width: 250px;
    /* አነስተኛው ስፋት */
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}