



    /* ======== Global Styles ======== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
       font-family: 'Segoe UI Symbol', sans-serif;
      /* background-color: #fff; */
      /* color: #1a1a1a; */
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    h1, h2, h3 {
      font-weight: 600;
    }




    /* Floating Buttons Container */
.floating_contact_btns_ {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Individual Buttons */
.float_btn_ {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-size: 22px;
}

/* Button Colors */
.whatsapp_ {
  background-color: #25d366;
}

.email_ {
  background-color: #0078d4;
}

.call_ {
  background-color: #28a745;
}

/* Hover Effect */
.float_btn_:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .float_btn_ {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}



    /* ====================================================*/


    /* Animation for the entire heading */
.home_hero_animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpTitle 1.2s ease-out forwards;
}

/* Fade-up animation */
@keyframes fadeUpTitle {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight effect for the <span> word */
.home_hero_animate span {
  color: #ffcc00;
  position: relative;
  display: inline-block;
  animation: highlightWord 1.8s ease-in-out 0.8s forwards;
  opacity: 0;
}

@keyframes highlightWord {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



    .header_text
    {
          font-size: 1.5rem;
    font-weight: bold;
        color: rgba(26, 115, 232); 
    }


    /* ============================================== */


.nav_bar_container {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav_bar_logo img {
  height: 70px;
}

.nav_bar_link {
  color: #333 !important;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav_bar_link:hover,
.nav_bar_link.active {
  color: #0d6efd !important;
}

.nav_bar_link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #0d6efd;
}

/* Gradient Button */
.nav_bar_btn {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  transition: 0.3s ease;
}

.nav_bar_btn:hover {
  opacity: 0.9;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .nav_bar_btn {
    width: 100%;
  }
}



/* ======================================================================  */



/* Hero Section */
.home_hero_section {
  /* background: #fff; */
  /* background: linear-gradient(90deg, rgba(0, 192, 255, 0) 0%, #00C0FF 50%, rgba(0, 192, 255, 0) 100%); */
  background: linear-gradient(128.76deg, #00C0FF 0%, #6A5ACD 100%);

box-shadow: 0px 0px 20px 0px #00C0FF;

}

.home_hero_title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.home_hero_title span {
  /* color: #3b82f6;  */
  color: white;
}

.home_hero_desc {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 15px;
  max-width: 90%;
}

.home_btn_primary {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50px !important;
  padding: 6px 25px !important;
  transition: all 0.3s ease !important;
    /* background: linear-gradient(103.92deg, #8B5CF6 0%, #06B6D4 100%); */
    border: 2px solid white !important;

}

.home_btn_primary:hover {
  background: #ffffff;
}

.home_btn_outline {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 6px 25px !important;
  transition: all 0.3s ease !important;
}

.home_btn_outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Hero Image */
.home_hero_image_wrapper {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, rgba(0, 192, 255, 0) 0%, rgba(0, 192, 255, 0.3) 50%, rgba(0, 192, 255, 0) 100%);

}

.home_hero_image {
  border-radius: 15px;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  max-height: 400px;
  object-fit: cover;
}

/* Features Section */
.home_feature_section {
  background-color: #f8f9fb;
}

.home_feature_card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.home_feature_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.home_feature_icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 15px;
}

.home_feature_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.home_feature_desc {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .home_hero_title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .home_hero_text {
    text-align: center;
  }
  .home_hero_desc {
    margin: 0 auto;
  }
  .home_hero_buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .home_hero_title {
    font-size: 1.8rem;
  }
  .home_hero_image {
    max-height: 300px;
  }
}


/* ===============================ABOUT ===================== */



/* ===== About Section ===== */
.about_section_ {
  /* background-color: #fff; */
  /* background: linear-gradient(180deg, #0A1437 0%, #1B2A4A 50%, #2E4A7C 100%); */
background-image: 
  linear-gradient(180deg, #0A1437 0%, #1B2A4A 50%, #2E4A7C 100%), 
  url(../images/about-bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.about_content_ {
    background: #0000004D;
    /* border: 2px solid #00D3F24D; */
    box-shadow: 0px 0px 40px 0px #00C0FF33;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 20px;
    /* background: transparent; */
}

.about_title_ {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  margin-bottom: 1rem;
}

.about_title_ span {
  color: #3b82f6;
}

.about_text_ {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about_image_ img {
  border-radius: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0px 0px 50px 0px #00C0FF4D !important;

backdrop-filter: blur(12px);
border: 2px solid #00D3F266 !important

}

.about_image_ img:hover {
  transform: scale(1.03);
}

/* ===== Vision & Mission Section ===== */
.vision_mission_section_ {
  background-color: #f8fafc;
}

.vision_mission_title_ {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.vision_mission_title_ span {
  color: #3b82f6;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 3px;
}

.vision_card_,
.mission_card_ {
  background: #fff;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.vision_card_:hover,
.mission_card_:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vision_heading_,
.mission_heading_ {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
}

.vision_text_,
.mission_list_ li {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.mission_list_ {
  list-style: none;
  padding-left: 0;
}

.mission_list_ li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.mission_list_ li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3b82f6 !important;
  font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about_title_ {
    text-align: center;
  }
  .about_text_ {
    text-align: center;
  }
  .about_image_ {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .vision_mission_title_ {
    font-size: 1.7rem;
  }
  .vision_card_,
  .mission_card_ {
    padding: 1.5rem;
  }
}



/* ===== Section Styling ===== */
.about_core_section {
  padding: 80px 20px;
  background-color: #fff;
}

.about_core_container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
.about_core_header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about_core_header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ===== Core Values Grid ===== */
.about_core_values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.about_core_value_card {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  text-align: center;
  padding: 35px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.about_core_value_card:hover {
  border-color: #3366ff;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(51,102,255,0.15);
}

/* ===== Icons ===== */
.about_core_value_card i {
  font-size: 2rem;
  color: #3366ff;
  margin-bottom: 20px;
}

/* ===== Text ===== */
.about_core_value_card h4 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.about_core_value_card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about_core_header h2 {
    font-size: 1.7rem;
  }
  .about_core_header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about_core_section {
    padding: 60px 15px;
  }
  .about_core_value_card {
    padding: 25px 20px;
  }
}



/* ==============================Footer ============================= */


/* Footer Section */
.footer_section_ {
  background-color: #0e1420;
  color: #cfd3db;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer_container_ {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

/* About */
.footer_about_ {
  flex: 1 1 260px;
}
.footer_logo_ {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.footer_desc_ {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}
.footer_social_ a {
  color: #cfd3db;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}
.footer_social_ a:hover {
  color: #0e1420;
  background: #fff;
}

/* Quick Links & Services */
.footer_links_, .footer_services_, .footer_contact_ {
  flex: 1 1 200px;
}

.footer_links_ h3, 
.footer_services_ h3, 
.footer_contact_ h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

.footer_links_ ul, 
.footer_services_ ul, 
.footer_contact_ ul {
  list-style: none;
  padding: 0;
}

.footer_links_ ul li, 
.footer_services_ ul li, 
.footer_contact_ ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer_links_ ul li a, 
.footer_services_ ul li a {
  color: #cfd3db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer_links_ ul li a:hover, 
.footer_services_ ul li a:hover {
  color: #fff;
}

/* Contact */
.footer_contact_ ul li i {
  margin-right: 8px;
  color: #fff;
}
.footer_hours_ h4 {
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
}
.footer_hours_ p {
  font-size: 13px;
  margin: 3px 0;
  color: #a9acb3;
}

/* Bottom */
.footer_bottom_ {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 13px;
  color: #a9acb3;
  max-width: 1200px;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .footer_container_ {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer_container_ {
    flex-direction: column;
    text-align: left;
  }
  .footer_bottom_ {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}



/* ==============================Footer   END ============================= */  



/* =================== Service page start ==================== ======== */


.service_pg_section {
  padding: 80px 20px;
      box-shadow: 0px 10px 15px -3px #0000001A;
    background: linear-gradient(180deg, #0A1437 0%, #1B2A4A 50%, #2E4A7C 100%);
  
}


.serv_sec1
{
        box-shadow: 0px 10px 15px -3px #0000001A;
    background: linear-gradient(180deg, #0A1437 0%, #1B2A4A 50%, #2E4A7C 100%) !important;
}


.service_pg_container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ======== Header ======== */
.service_pg_header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.service_pg_header p {
  font-size: 1rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* ======== Tab Button ======== */
.service_pg_tab {
  margin: 40px 0;
}

.service_pg_tab_btn {
  background: #f5f6fa;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service_pg_tab_btn.active {
  background: #e9efff;
  color: #3366ff;
}

.service_pg_tab_btn i {
  margin-right: 8px;
}



.service_pg_text
{
    color: white !important;
}


/* ======== Layout ======== */
.service_pg_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.service_pg_col {
  flex: 1 1 48%;
}

.service_pg_image img {
  width: 100%;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
      box-shadow: 0px 0px 50px 0px #00C0FF4D !important;
    backdrop-filter: blur(12px);
    border: 2px solid #00D3F266 !important;
}

/* ======== Cards ======== */
.service_pg_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service_pg_card {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    padding: 20px;

/*background: linear-gradient(90deg, rgba(15, 23, 43, 0.8) 0%, rgba(29, 41, 61, 0.8) 50%, rgba(15, 23, 43, 0.8) 100%);*/

/*background: linear-gradient(133deg, #41d3ef0d 0%, rgb(6 17 34 / 33%) 100%);*/
transition: all 0.3s 
ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.serv_head p , .serv_head h2
{
    color: white !important;
}


.serv_crd
{

/*background: linear-gradient(90deg, rgba(15, 23, 43, 0.8) 0%, rgba(29, 41, 61, 0.8) 50%, rgba(15, 23, 43, 0.8) 100%);*/

transition: all 0.3s 
ease;
    border: 1px solid #0000000d;
color: white !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
}


.serv_crd i
{
    color: #000 !important;
}


.serv_crd h4
{
color: #000 !important;
}


.serv_crd p
{
color: 
#000 !important;
}


.service_pg_card:hover {
  transform: translateY(-5px);
  border-color: #3366ff;
}

.service_pg_card i {
  font-size: 1.8rem;
  color: #000 !important;
  margin-bottom: 15px;
}

.service_pg_card h4 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 10px;
}

.service_pg_card p {
  font-size: 0.95rem;
  color: #000;
}

/* ======== Responsive ======== */
@media (max-width: 992px) {
  .service_pg_row {
    flex-direction: column-reverse;
  }
  .service_pg_col {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .service_pg_header h2 {
    font-size: 1.6rem;
  }
  .service_pg_tab_btn {
    width: 100%;
    margin-bottom: 10px;
  }
}



/* ============================================== */
/* ============================career======================== */



    /* Container */
    .career_section {
      width: 100%;
      margin: auto;
      padding: 40px;
          background: linear-gradient(115.38deg, #00C0FF 0%, #6A5ACD 100%);
    }

    .career_header {
      text-align: center;
      margin-bottom: 40px;
    }

    .career_header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #111;
    }

    .career_header h2 span {
      color: #4103ff;
    }

    .career_header p {
      color: #555;
      font-size: 1rem;
      margin-top: 10px;
    }

    /* Layout */
    .career_content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      width: 90%;
      margin: auto;
    }

    /* Left Section */
    .career_left_card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      padding: 30px;
    }

    .career_left_card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .career_left_card h3::before {
      content: '\f0b1';
      font-family: 'bootstrap-icons';
      color: #007bff;
      font-size: 1.4rem;
      margin-right: 10px;
    }

    .career_left_card p {
      margin-bottom: 15px;
      color: #555;
      font-size: 0.95rem;
    }

    .career_contact_box {
      background: #f1f6ff;
      border-radius: 8px;
      padding: 15px;
      margin-top: 15px;
    }

    .career_contact_box strong {
      display: block;
      font-weight: 600;
      margin-bottom: 5px;
      color: #222;
    }

    .career_contact_box a {
      color: #007bff;
      text-decoration: none;
      font-weight: 500;
    }

    .career_btn {
      display: inline-flex;
      align-items: center;
      background: #007bff;
      color: #fff;
      padding: 10px 18px;
      border-radius: 25px;
      margin-top: 15px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .career_btn i {
      margin-right: 8px;
    }

    .career_btn:hover {
      border: 2px solid #0056d2;
      background-color: transparent;
      color: #0056d2;
    }

    /* Right Section */
    .career_right_area {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .career_card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      transition: 0.3s;
    }

    .career_card:hover {
      transform: translateY(-5px);
    }

    .career_icon {
      font-size: 1.8rem;
      color: #007bff;
    }

    .career_card_content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 5px;
    }

    .career_card_content p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Focus Areas Box */
    .career_focus_box {
      background: #f1f6ff;
      border: 1px solid #dbe7ff;
      border-radius: 10px;
      padding: 20px;
    }

    .career_focus_box h4 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #111;
    }

    .career_focus_list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .career_focus_list li {
      list-style: none;
      font-size: 0.95rem;
      color: #007bff;
      position: relative;
      padding-left: 18px;
    }

    .career_focus_list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #007bff;
      font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .career_content {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .career_header h2 {
        font-size: 1.6rem;
      }

      .career_btn {
        width: 100%;
        justify-content: center;
      }
    }


/* =================== carrer page end ==================== ======== */





    /* ====== CONTACT SECTION ====== */
    .contc_pg_container {
      width: 100%;
      background: linear-gradient(115.38deg, #00C0FF 0%, #6A5ACD 100%);
      margin: auto;
      padding: 40px 20px;
      /*background: #fff;*/
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .contc_pg_header {
      text-align: center;
      margin-bottom: 40px;
    }

    .contc_pg_header h2 {
      font-size: 2rem;
      color: #004aad;
      margin-bottom: 10px;
    }

    .contc_pg_header p {
      font-size: 1rem;
      color: #666;
    }

    /* Layout */
    .contc_pg_row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
margin: auto;
    width: 80%;
    }

    .contc_pg_info,
    .contc_pg_form {
      flex: 1;
      min-width: 300px;
    }

    /* Contact Info */
    .contc_pg_info_item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      gap: 15px;
    }

    .contc_pg_info_item i {
      font-size: 1.5rem;
      color: #004aad;
      background: #eaf0ff;
      padding: 10px;
      border-radius: 8px;
    }

    .contc_pg_info_text h4 {
      margin: 0;
      font-size: 1.1rem;
      color: #222;
    }
    
    a{
     color: inherit !important;   
    }

    .contc_pg_info_text p {
      margin: 5px 0 0;
      color: #fff !important;
      font-size: 0.95rem;
    }

    /* Business Hours */
    .contc_pg_hours {
      margin-top: 30px;
    }

    .contc_pg_hours h4 {
      font-size: 1.1rem;
      color: #004aad;
      margin-bottom: 10px;
    }

    .contc_pg_hours p {
      line-height: 1.6;
      color: #fff;
    }

    /* Form Styling */
    .contc_pg_form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contc_pg_form input,
    .contc_pg_form textarea {
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      width: 100%;
      outline: none;
      transition: 0.3s ease;
    }

    .contc_pg_form input:focus,
    .contc_pg_form textarea:focus {
      border-color: #004aad;
      box-shadow: 0 0 5px rgba(0, 74, 173, 0.2);
    }

    .contc_pg_form button {
      background: #004aad;
      color: #fff;
      border: none;
      padding: 12px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .contc_pg_form button:hover {
      background: #00327a;
    }

    /* Map */
    .contc_pg_map {
      margin: 50px auto;
            width: 80%;

    }

    .contc_pg_map iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contc_pg_container {
        margin: 20px;
        padding: 25px;
      }

      .contc_pg_row {
        flex-direction: column;
      }

      .contc_pg_header h2 {
        font-size: 1.6rem;
      }
    }


    /* =========================== */

    .about_core_section {
  background: linear-gradient(to bottom right, #f7faff, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.about_core_container {
  max-width: 1200px;
  margin: 0 auto;
}

.about_core_title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.about_core_title span {
  color: #3b82f6;
}

.about_core_subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 50px;
}

.about_core_values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.about_core_card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_core_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.about_core_icon {
  font-size: 2.2rem;
  color: #3b82f6;
  margin-bottom: 15px;
}

.about_core_card_title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.about_core_card_text {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about_core_title {
    font-size: 1.7rem;
  }

  .about_core_card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .about_core_subtitle {
    font-size: 0.9rem;
  }

  .about_core_card_title {
    font-size: 1.1rem;
  }

  .about_core_card_text {
    font-size: 0.9rem;
  }
}



/*----------------------------------------*/



.linkedin_link_ {
  color: #0A66C2 !important; 
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.linkedin_link_ i {
  /*margin-right: 8px;*/
  font-size: 20px;
  vertical-align: middle;
}

.linkedin_link_:hover {
  color: #004182 !important; 
  text-decoration: underline;
}



