/* Top Header Styles Start*/
.top-header {
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(45deg, #fff 30%, #CFF4FF 100%) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Styles */
.top-header .site-logo {
    width: 180px;
    flex-shrink: 0;
}

.top-header .logo-img {
    width: 60%;
    height: auto;
    /* display: block; */
}

/* Social Icons Styles */
.top-header .social-icons-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 0 0 30px;
    position: relative;
}

.top-header .social-icons-center::before,
.top-header .social-icons-center::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 30px;
    transform: translateY(-50%);
}

.top-header .social-icons-center::before {
    left: 0;
}

.top-header .social-icons-center::after {
    right: 0;
}

.top-header .social-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius:50%;
    color: #333;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    transition:all 0.3s ease;
  text-decoration:none;
}

.top-header .social-icon:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: flex-end;
}

.top-header .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.top-header .contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    height: 30px;
    width: 1px;
    background: rgba(0,0,0,0.1);
    transform: translateY(-50%);
}

.top-header .contact-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.top-header .contact-text {
    display: flex;
    flex-direction: column;
}

.top-header .contact-text small {
    color: #666;
    font-size: 12px;
    line-height: 1.2;
}

.top-header .contact-text strong {
    color: #333;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}
.mobile-top-header{
    display: none;
}
@media (max-width: 1400px) {
    /* top header section responsive */
    .top-header .contact-info {
        gap: 20px;
    }
    .top-header .contact-item:not(:last-child)::after {
        right: -10px;
    }
}
@media (max-width: 1200px) {
    .top-header .header-content {
        gap: 15px;
    }
    .top-header .social-icons-center {
        padding: 0 20px;
    }
    .top-header .contact-info {
        gap: 15px;
    }
    .top-header .contact-text strong {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .top-header{
        display: none;
    }
    .mobile-top-header{
        display: block;
    }
    /* mobile top header  */
    .mobile-top-header{
        display: block;
        padding: 2px 0 2px 0;
        background: linear-gradient(45deg, #fff 30%, #CFF4FF 100%) !important;
    }
    .mobile-top-header .col-lg-12{
        display: flex;
        justify-content: space-between;
    }
    .mobile-top-header img{
        width: 100px;
    }
    .mobile-top-header .social-icons-center{
        margin: 15px 5px;
    }
    .mobile-top-header .social-icons-center a{
        padding:3px 7px 5px 8px;
        border-radius:50px;
        color: var(--text-color-dark);
        background-color: #fff;
        margin:0 4px;
        height: 31px;
        width: 31px;
        display: inline-block;
        text-align: center;
    }
    .mobile-top-header .social-icons-center a:hover{
        background-color: var(--secondary-color);
        color: #fff;
    }
}
@media (max-width: 767px) {
    /* top header responsive */
    .top-header {
        position: relative;
    }
    .top-header .contact-info {
        gap: 15px;
    }
    .top-header .contact-info > div {
        padding: 0;
        margin-bottom: 0;
        display: none !important;
    }
    .top-header .contact-info {
        display: none !important;
    }
    .cg-footer-section .small{
      text-align: center;
    }
}
@media (max-width: 576px) {
    .top-header {
        padding: 15px 0;
        display: none;
    }
    .top-header .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .top-header .site-logo {
        width: 160px;
        margin: 0 auto;
    }
    .top-header .logo-img{
        margin-left: 33px;
    }
    .top-header .social-icons-center {
        width: 100%;
        padding: 15px 0 !important;
        margin: 10px 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .top-header .contact-info {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
        margin: 0;
    }
    .top-header .contact-item {
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 0;
        margin: 0;
    }
    .top-header .contact-item:not(:last-child)::after {
        display: none;
    }
    .top-header .contact-text {
        align-items: center;
        text-align: center;
    }
    .top-header .contact-text small,
    .top-header .contact-text strong {
        text-align: center;
    }
    
}
/* Top Header Styles End */

/* New Footer Section Start */
.cg-footer-section {
  background: white;
  padding: 0;
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}
.cg-footer-section address,
.cg-footer-section address a{
  font-size: 15px !important;
}
.cg-footer-section .cg-footer-section-ul li a{
  font-size: 15px !important;
  text-decoration: none !important;
  color: var(--text-color-dark) !important;
  transition: all 0.3s ease;
}
.cg-footer-section .cg-footer-section-ul li{
  padding: 5px 0 !important;
}
.cg-footer-section .cg-footer-section-ul li a:hover{
  color: var(--primary-color) !important;
  padding-left: 5px !important;
}
.cg-footer-top {
  padding: 40px 0 0 0;
  margin-bottom: 0;
}
.cg-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}
.cg-footer-col {
  flex: 1 1 0;
  min-width: 260px;
  margin-bottom: 30px;
}
.cg-footer-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color-dark);
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 4px;
}
.cg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cg-footer-col ul li {
  margin-bottom: 10px;
}
.cg-footer-col ul li a {
  color: var(--text-color-dark);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.cg-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.cg-footer-products-img {
  max-width: 340px;
  width: 100%;
  margin-bottom: 10px;
}
.cg-footer-logo img {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.contact-us address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cg-footer-link {
  text-decoration: underline;
  font-weight: 500;
}
.cg-footer-map {
  margin-top: 10px;
}
.cg-footer-map iframe {
  border-radius: 8px;
}
.cg-footer-bottom {
  border-top: 2px solid var(--primary-color);
  margin-top: 30px;
  padding: 16px 0 0 0;
  background: #e6f3fb;
}
.cg-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}
.cg-footer-copyright {
  color: var(--text-color-dark);
  font-size: 1.1rem;
}
.cg-footer-red {
  color: var(--primary-color);
  font-weight: 600;
}
.cg-footer-social {
  display: flex;
  gap: 18px;
}
.cg-footer-social a {
  color: var(--text-color-dark);
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(34,147,206,0.08);
  transition: background 0.2s, color 0.2s;
}
.cg-footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
}
.cg-footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 32px auto;
  padding-top: 40px;
  gap: 32px;
}
.cg-footer-main-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 24px;
}
.cg-footer-logo-border {
  flex: 1 1 0;
  height: 2px;
  background: var(--primary-color);
  min-width: 40px;
  border-radius: 2px;
}
.border-info{
  border-color: var(--primary-color) !important;
  width: 30% !important;
}
.border-bottom{
  border-color: var(--primary-color) !important;
  width: 70% !important;
}
.text-info{
  color: var(--text-color-dark) !important;
  font-size: 17px !important;
}
.bottom-footer a{
  width:38px;
  height:38px;
  background-color: #2293CE !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.bottom-footer a:hover{
  background-color: #FFCD31 !important;
  color: white !important;
  transform: scale(1.1);
}
@media (max-width: 700px) {
  .cg-footer-logo-row {
    gap: 12px;
    padding-top: 24px;
    margin-bottom: 18px;
  }
  .cg-footer-main-logo {
    height: 48px;
    margin: 0 8px;
  }
  .cg-footer-logo-border {
    min-width: 10px;
  }
  .border-bottom{
    width: 40% !important;
  }
}
@media (max-width: 1100px) {
  .cg-footer-row, .cg-footer-bottom-row {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    gap: 24px;
  }
  .cg-footer-col {
    min-width: 200px;
    width: 100%;
    text-align: center;
  }
  .cg-footer-center {
    align-items: center;
  }
  .cg-footer-bottom-row {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .cg-footer-products-img {
    max-width: 180px;
  }
  .cg-footer-logo img {
    max-width: 120px;
  }
  .cg-footer-map iframe {
    width: 100%;
    height: 120px;
  }
}
@media (max-width: 992px) {
  iframe{
    width: 310px !important;
  }
}
@media (max-width: 1400px) {
  iframe{
    width: 620px;
  }
}
/* New Footer Section End */