.container {
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: white; */
    /* border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.header {
    text-align: center;
    padding: 30px 20px;
}

.header h1 {
    color: #e86333;
    font-size: 32px;
    margin-bottom: 15px;
}

.header h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.header p {
    color: #555;
    font-size: 16px;
}

.content {
    display: flex;
    flex-wrap: wrap;
}

.stats {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #e86333;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #333;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0 30px;
}

.partners h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partner-logo {
    background-color: #f9f3f0;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.form-section {
    flex: 1;
    min-width: 350px;
}

.form-container {
    background-color: #f9f3f0;
    padding: 0 0 20px 0;
}

.form-header {
    background-color: #e86333;
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    margin-bottom: 20px;
}

.form-body {
    padding: 0 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-option input {
    margin: 0;
}

.phone-input {
    display: flex;
}

.phone-code {
    width: 80px !important;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    border-right: none;
    padding: 0 10px;
}

.phone-code img {
    width: 20px;
    margin-right: 5px;
}

.phone-number {
    border-radius: 0 4px 4px 0 !important;
}

.submit-btn {
    background-color: #e86333;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 40px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #d55425;
}

.required {
    color: red;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
        gap: 16px;
    }

    .partner-logo {
        height: 70px;
        padding: 10px;
    }

    .partner-logo img {
        max-height: 45px;
    }
}
.get-in-touch-container {
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: white; */
    border-radius: 8px;
    padding: 40px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0ff; */
}

.title {
    text-align: center;
    color: #e86333;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.contact-sections-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-methods-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.contact-card {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}
.contact-method {
    display: block; /* Changed from 'none' to 'block' to make all methods visible */
    margin-bottom: 25px;
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.icon-container i {
    font-size: 24px;
    color: rgb(65, 62, 62);
}

.sales-icon {
    background-color: #e86333;
}



.admin-icon {
    background-color: #ffffff;
}

.hr-icon {
    background-color:  #ffffff;
}

.support-icon {
    background-color:  #ffffff;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 5px;
}

.contact-details p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-methods-card {
    background-color: #fff9f2;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-method {
    margin-bottom: 25px;
}

.method-icon {
    margin-bottom: 10px;
}

.method-icon i {
    font-size: 20px;
    color: #e86333;
}

.contact-method h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-method a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.2s;
}

.contact-method a:hover {
    color: #e86333;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer-support-image {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
}

.customer-support-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Shadow effect for cards */
.contact-card {
    position: relative;
}

.contact-card::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 0;
    bottom: -15px;
    height: 1px;
    background: linear-gradient(to right, #e0e0e0 0%, transparent 100%);
}

.contact-card:last-child::after {
    display: none;
}

.contact-card.active-card {
    background-color: #fff9f2;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card.active-card .contact-details h2,
.contact-card.active-card .contact-details p {
    color:  #e86333;
}




/* Responsive styles */
@media (max-width: 768px) {
    .contact-sections-container {
        flex-direction: column;
    }
    
    .customer-support-image {
        width: 120px;
        height: 120px;
    }
}
/* Subscribe Section Styles */
.subscribe-section {
    background-color: #faf6f0;
    padding: 40px 20px;
}

.subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.form-groupsub {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.form-groupsub input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.form-groupsub input:focus {
    border-color: #e86333;
}

.mobile-input {
    display: flex;
    align-items: center;
    position: relative;
}

.country-code {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: white;
    padding: 4px;
}

.country-code img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    color: #999;
    margin-left: 2px;
}

.mobile-input input {
    padding-left: 60px;
}

.subscribe-btn {
    padding: 15px 40px;
    background-color: #e86333;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background-color: #d55425;
}

/* Map Section Styles */
.map-section {
    margin-top: 0;
    position: relative;
    height: 450px;
}

.map-container {
    position: relative;
    height: 100%;
    display: flex;
}

.map-info {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: white;
    padding: 20px;
    width: 300px;
    z-index: 10;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.map-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-score {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

.reviews {
    color: #2e7ef1;
    font-size: 14px;
}

.map-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.map-links a {
    color: #2e7ef1;
    text-decoration: none;
    font-size: 14px;
}

.directions-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #2e7ef1 !important;
    font-weight: 500;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-controls {
    position: absolute;
    right: 10px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.zoom-in {
    border-radius: 4px 4px 0 0;
}

.zoom-out {
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    .form-groupsub {
        width: 100%;
        max-width: 400px;
    }
    
    .map-info {
        width: 250px;
        top: 20px;
        left: 20px;
    }
}