* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    /* padding: 50px 0; */
}

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

/* Enhanced Benefits Section */
.benefits-section {
    /* background: linear-gradient(135deg, #1e7e8c 0%, #2c3e50 100%); */
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M0 0L50 50L0 100L50 50L100 100L50 50L100 0L50 50z" stroke="rgba(255,255,255,0.05)" stroke-width="0.5" fill="none"/%3E%3C/svg%3E');
    background-size: 100px 100px;
    opacity: 0.3;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.section-header span {
    display: inline-block;
    color: #32b8c6;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(50, 184, 198, 0.15);
    border-radius: 30px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background: linear-gradient(90deg, #3589f1 0%, #1464a2 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #3589f1 0%, #1464a2 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #3589f1 0%, #1464a2 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(30, 126, 140, 0.3);
}

.benefit-icon i {
    font-size: 38px;
    color: white;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.highlight-text {
    color: #1e7e8c;
    font-weight: 600;
}

/* Enhanced About Section */
.about-section {
    padding: 25px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-text .section-tittle span {
    display: inline-block;
    color: #3589f1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(30, 126, 140, 0.1);
    border-radius: 30px;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    padding: 15px 0 15px 45px;
    position: relative;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.about-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 30px;
    height: 30px;
    /* background: linear-gradient(135deg, #3589f1 0%, #1e7e8c 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features li::after {
    content: '✓';
    position: absolute;
    left: 9px;
    top: 18px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #3589f1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box h4 {
    font-size: 32px;
    font-weight: 800;
    color: #3589f1;
    margin-bottom: 5px;
}

.stat-box p {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.btn-custom {
    display: inline-block;
    padding: 16px 40px;
    /* background: linear-gradient(135deg, #3589f1 0%, #1e7e8c 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 126, 140, 0.3);
    margin-top: 20px;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 126, 140, 0.4);
}


/* .btn-custom1 {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #3589f1 0%, #1e7e8c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 31px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 126, 140, 0.3);

}

.btn-custom1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 126, 140, 0.4);
} */

.btn-custom1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;                /* bigger circular area */
  height: 62px;
  padding: 0;
  /* background: linear-gradient(135deg, #3589f1 0%, #1e7e8c 100%); */
  background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(30,126,140,0.25);
  font-weight: 700;
  position: relative;
  transition: all 0.3s cubic-bezier(.51,.92,.24,1);
  border: 0;
  outline: none;
  overflow: hidden;
}

.btn-custom1 i {
  z-index: 1;
  position: relative;
}

.btn-custom1:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #ffffff33;
  opacity: 0; 
  transition: opacity 0.2s;
}

.btn-custom1:hover {
  /* background: linear-gradient(135deg, #1e7e8c 10%, #3589f1 90%); */
  background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
  color: #ffd700;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 38px 0 rgba(44,62,80,0.20), 0 1.5px 2.5px 0 rgba(30,126,140,0.12);
}

.btn-custom1:hover:after {
  opacity: 1;
  animation: ring-burst 0.5s cubic-bezier(.1,.52,.56,.99);
}

.pulse-animate {
  animation: pulse 2s infinite;
}

/* Pulse effect for button */
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(30,126,140,0.25); }
  60% { box-shadow: 0 14px 38px rgba(44,62,80,0.27), 0 2px 4px rgba(30,126,140,0.07); }
}

/* Ring burst on hover */
@keyframes ring-burst {
  0% { opacity: 0; transform: scale(0.6);}
  80% { opacity: .5; transform: scale(1.18);}
  100% { opacity: 0; transform: scale(1.3);}
}


.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.about-img-1 {
    background: linear-gradient(135deg, rgba(30, 126, 140, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=600');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    grid-row: 1 / 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-img-2 {
    background: linear-gradient(135deg, rgba(30, 126, 140, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=600');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-img-3 {
    background: linear-gradient(135deg, rgba(30, 126, 140, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=600');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 800;
    color: #3589f1;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-badge p {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 400px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* Services/Domains Section */
.services-area {
    padding: 50px 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23f7f7fd"/%3E%3Cpath d="M0 0L50 50M50 0L100 50L50 100L0 50L50 0M50 50L100 100M0 100L50 50L100 0" stroke="%23e8e8f5" stroke-width="0.5" fill="none"/%3E%3C/svg%3E');
    background-size: 100px 100px;
    position: relative;
}

.section-tittle {
    text-align: center;
    margin-bottom: 80px;
}

.section-tittle span {
    display: inline-block;
    color: #3589f1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 25px;
    background: rgba(53, 137, 241, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(53, 137, 241, 0.2);
}

.section-tittle h2 {
    font-size: 42px;
    font-weight: 700;
    color: #16161a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.domain-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(53, 137, 241, 0.08);
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1ba59f 0%, #1464a2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.domain-card:hover::before {
    opacity: 1;
}

.domain-card:hover {
    transform: translateY(-10px);
    border-color: #3589f1;
    box-shadow: 0 15px 40px rgba(53, 137, 241, 0.25);
}

.domain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(53, 137, 241, 0.1) 0%, rgba(53, 137, 241, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border: 2px solid rgba(53, 137, 241, 0.2);
}

.domain-card:hover .domain-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(10deg);
}

.domain-icon i {
    font-size: 38px;
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
}


.domain-card:hover .domain-icon i {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.domain-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #16161a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.domain-card:hover h5 {
    color: #ffffff;
}

.domain-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    margin: 0;
}

.domain-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.domain-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    /* background: #3589f1; */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.domain-card:hover .domain-badge {
    opacity: 1;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .services-area {
        padding: 80px 0;
    }

    .section-tittle h2 {
        font-size: 32px;
    }

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

    .domain-card {
        padding: 30px 20px;
    }
}


.mv-card {
    border-radius: 18px;
    background: #fff;
    border: 2px solid rgba(53, 137, 241, 0.10);
    box-shadow: 0 6px 30px rgba(53, 137, 241, 0.07);
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    position: relative;
}

.mv-card:hover {
    border-color: #3589f1;
    box-shadow: 0 8px 40px rgba(53, 137, 241, 0.19);
    transform: translateY(-5px) scale(1.04);
}

.mv-icon {
    font-size: 34px;
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    box-shadow: 0 2px 8px rgba(53, 137, 241, 0.07);
}

.mv-card h5 {
    color: #16161a;
    font-weight: 700;
    font-size: 21px;
}

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

@media (max-width: 991px) {
    .mv-card {
        margin-bottom: 28px;
    }

    .pt-150 {
        padding-top: 60px;
    }

    .pb-140 {
        padding-bottom: 60px;
    }
}

.contact-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f7f7fd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="none"/%3E%3Cpath d="M30 0v60M0 30h60" stroke="%233589f1" stroke-width="1"/%3E%3C/svg%3E');
    background-size: 60px 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-tittle {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: #3589f1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 25px;
    background: rgba(53, 137, 241, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(53, 137, 241, 0.2);
}

.section-tittle h2 {
    font-size: 42px;
    font-weight: 700;
    color: #16161a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-tittle p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4 {
    padding: 0 15px;
    margin-bottom: 30px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(53, 137, 241, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #3589f1;
    box-shadow: 0 20px 50px rgba(53, 137, 241, 0.25);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    /* background: linear-gradient(135deg, #3589f1 0%, #1464a2 100%); */
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(53, 137, 241, 0.3);
}

.icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}

.contact-info-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #16161a;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.contact-info-card a {
    font-size: 18px;
    font-weight: 600;
    color: #3589f1;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: #2a6bc7;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #1ba59f 0%, #105f9c 100%);
    border-radius: 25px;
    padding: 60px 50px;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(53, 137, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.decorative-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.decorative-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.col-lg-6 {
    padding: 0 15px;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    z-index: 1;
}

.form-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-info>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #ffffff;
}

.info-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #16161a;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}

.form-control:focus {
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

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

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #ffffff;
    color: #3589f1;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: #f5f5f5;
}

.submit-btn i {
    margin-right: 10px;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-tittle h2 {
        font-size: 36px;
    }

    .col-lg-4,
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

    .form-info h3 {
        font-size: 28px;
    }

    .col-lg-6:first-child {
        margin-bottom: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .section-tittle {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 20px;
    }

    .section-tittle h2 {
        font-size: 30px;
    }

    .section-tittle p {
        font-size: 14px;
        padding: 0 10px;
    }

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

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 28px;
    }

    .contact-info-card h4 {
        font-size: 20px;
    }

    .contact-info-card a {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 35px 20px;
        margin-top: 30px;
    }

    .form-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .form-info>p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .info-item {
        margin-bottom: 20px;
    }

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

    .form-group {
        margin-bottom: 20px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 14px 25px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-tittle h2 {
        font-size: 26px;
    }

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

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }

    .contact-info-card h4 {
        font-size: 18px;
    }

    .contact-info-card a {
        font-size: 14px;
    }

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

    .form-info h3 {
        font-size: 22px;
    }

    .form-info>p {
        font-size: 13px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-item h5 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 13px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    .decorative-circle-1,
    .decorative-circle-2 {
        display: none;
    }
}

/* Desktop */
.logo-responsive {
    width: 25%;
}

/* Mobile view (screen < 768px) */
@media (max-width: 767px) {
    .logo-responsive {
        width: 12%;
    }

    .experience-badge {
        left: 10px;
        width: 135px;

    }
}


