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

body {
    margin: 0;
     font-family: 'Montserrat';
}

/* top-section */



.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    top: 0;
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
    font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
    font-weight:500;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}

.color{
  color:#C0265A;
}



.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}

/* Global-presence-section */

.global-presence-section {
  width:100%;
  background: #f9fafb;
  font-family:'Montserrat';
}


.global-presence-header {
  text-align: center;
  padding: 60px 180px 40px;
}

.global-presence-header h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1f2f5d;
}

.global-presence-header h2 span {
  font-weight:bold;
}

.global-presence-header p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 28px;
  color: #000000;
}


.global-presence-content {
  display: flex;
   height: 820px;
}


.global-presence-image {
  width: 50%;
  height:100%;
  background-image: url("assets/images/global-presence-image.png");
  background-size: cover;
  background-position: center;
}


.expert-panel {
  width: 50%;
  background: #334567;
  color: #ffffff;
  padding: 54px 60px;
  display: flex;
  flex-direction: column;
}

.expert-panel h3 {
  font-size: 26px;
  font-weight: 600;
}

.expert-subtitle {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.85;
}

.expert-phone {
  margin: 24px 0;
  font-size: 22px;
  font-weight: 500;
}

.expert-info {
  font-size: 13px;
  line-height: 22px;
  opacity: 0.9;
}

.expert-info strong {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.expert-email,
.expert-location {
  color: #f472b6;
}


.expert-actions {
  margin-top: auto;
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    #c83063,
    #c62e61,
    #c22b5d,
    #c1275a,
    #bc2356
  );
  border: none;
  color: #fff;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.btn-secondary {
  background: #ffffff;
  border: none;
  color: #334567;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}


@media (max-width: 1199px) {

  .global-presence-section {
    width: 100%;
  }

  .global-presence-header {
    padding: 48px 32px 32px;
  }

  .global-presence-header h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
  }

  .global-presence-header p {
    font-size: 15px;
    line-height: 24px;
  }


  .global-presence-content {
    flex-direction: column;
    height: auto;
  }

  .global-presence-image {
    width: 100%;
    height: 360px;
  }

  .expert-panel {
    width: 100%;
    padding: 48px 32px;
    align-items: center;
    text-align: center;
  }

  .expert-info {
    text-align: center;
  }

  .expert-actions {
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
  }
}


@media (max-width: 576px) {

  .global-presence-header {
    padding: 40px 20px 24px;
  }

  .global-presence-header h2 {
    font-size: 22px;
  }

  .global-presence-header p {
    font-size: 14px;
    line-height: 22px;
  }

  .global-presence-image {
    height: 280px;
  }

  .expert-panel {
    padding: 36px 20px;
  }

  .expert-panel h3 {
    font-size: 22px;
  }

  .expert-phone {
    font-size: 18px;
  }

  .expert-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 260px;
  }
}



/* Footer Section */


.footer {
 
  width:100%;
  
  padding: 15px 32px;
  background: #F9FAFB;
  display: flex;
  flex-direction: column;
  
  
}

.footer-top {
  display: flex;
  justify-content:center;
  border-bottom: 0.45px solid #E5E7EB;
  padding-bottom: 24px;
  gap:180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 180px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6B7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content:center;
  padding: 18px 0;
  font-size: 13px;
  color: #6B7280;
  gap:400px;
  
}

.footer-bottom p{
  font-size:17px;
}

@media (max-width: 767px) {

  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  
  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
     align-items: center;     
  text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
  align-items: center;
}

 
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {

  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;         
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;   
  }

  .footer-column {
    width: 100%;
  }

  
  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}


