/* =========================================================
   🌐 GLOBAL STYLES (Typography, Reset, Utility Classes)
========================================================= */

/*---------- GOOGLE FONTS ----------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/*----------- VARIABLES CSS -----------*/
:root {
  --header-height: 3.5rem;
  --first-color: #ffffff;
  --first-color-lighten: hsla(0, 0%, 0%, 0.255);
  --first-color-light: hsl(220, 100%, 50%);
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(0, 0%, 100%);
  --body-color: hsla(0, 0%, 0%, 0.9);
  --body-font: 'poppines', sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html, body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #ffffff;
  color: #111;
  height: 100%;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1120px;
  margin-inline: auto;
}





/* =========================================================
   🔝 NAVBAR
========================================================= */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0px 60px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  transition: all .3s ease;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 80px;
}

.company-name {
  font-size: 1.9rem;
  font-weight: bold;
  color: #0030A0;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  padding: 12px 16px;
  display: inline-block;
  font-weight: 500;
  color: #0033A0;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0f38ed;
}

/*--------------- DROPDOWN STYLES -------------*/
.dropdown:hover .dropdown-menu {
  display: flex;
}

.grid-dropdown,
.image-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(52px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-dropdown {
  left: -150%;
  width: 600px;
  flex-direction: column;
}

/* 👉 About Us dropdown only: reduce width */
.main-navbar .nav-links li:nth-child(3) .grid-dropdown {
  width: 360px; /* Changed width */
  left: -80%;
}

/* Grid Items */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background-color: #1f1f1f;
}

.dropdown-item i {
  font-size: 20px;
  color: #0814ef;
  margin-top: 4px;
}

.dropdown-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.dropdown-item p {
  font-size: 13px;
  color: #aaa;
  margin: 2px 0 0;
}

.dropdown-links {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-btn {
  background-color: #0f38ed;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
  margin-right: 10px;
}

.contact-btn:hover {
  background-color: #0022aa;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-navbar {
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background: #47428d;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 20px 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1a1a1a;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: flex;
  }

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

  .grid-dropdown,
  .image-dropdown {
    width: 90vw;
    left: 5vw;
    flex-direction: column;
  }

  .contact-btn {
    margin: 10px auto;
  }
}

/*--------------- Hero Section Styles ---------------*/
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.6);
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 60px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 200;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn.primary {
  background-color: #0033A0;
  color: #fff;
}

.btn.primary:hover {
  background-color: #005fa3;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    justify-content: center;
    padding-left: 20px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}










/*--------------- Cybersecurity Overview Styles ---------------*/
.cyber-overview {
  padding: 80px 20px;
  background-color: #fff;
  color: #0033A0;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.cyber-container {
  max-width: 1300px;
  margin: 0 auto;
}

.cyber-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 50px;
  line-height: 1.2;
  color: #0033A0;
}

.cyber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.cyber-feature h3 {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0033A0;
}

.cyber-feature p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cyber-cta {
  margin-top: 20px;
}
.cyber-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #0033A0;       /* Outline color */
  background-color: transparent;   /* No fill */
  color: #0033A0;                  /* Text color */
  font-size: 16px;
  text-decoration: none;           /* Remove underline */
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}

.cyber-btn:hover {
  background-color: #0033A0;       /* Fill on hover */
  color: #fff;                     /* Invert text color */
}

@media (max-width: 992px) {
  .cyber-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cyber-grid {
    grid-template-columns: 1fr;
  }

  .cyber-title {
    font-size: 2rem;
  }
}




















/*================== OUR SERVICES SECTION ==================*/
.services-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.services-text {
  max-width: 700px;
}

.services-subtitle {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.services-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4;
  color: #0033A0;
}

.services-cta {
  margin-top: 10px;
}

.services-btn {
  background-color: #0b0b16;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.services-btn:hover {
  background-color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
  height: 300px;
  max-width: auto;
}

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

.service-icon img {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.plus-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 22px;
  font-weight: bold;
  color: #0b0b16;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.plus-icon:hover {
  transform: rotate(45deg) scale(1.3);
}

/*================== MODAL ==================*/
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-modal-content {
  background-color: #ffffff;
  color: #000000; /* 👈 Add this line */
  border-radius: 16px;
  padding: 30px;
  max-width: 700px;
  width: 190%;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.custom-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  color: #444;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*================== RESPONSIVE ==================*/
@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    gap: 20px;
  }

  .services-title {
    font-size: 24px;
  }

  .services-btn {
    width: 100%;
    text-align: center;
  }
}








/*--------------------- Industry Section -----------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.tg-industry-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.tg-industry-header {
  text-align: center;
  margin-bottom: 40px;
}

.tg-industry-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #003399;
  margin-bottom: 10px;
}

.tg-industry-header p {
  font-size: 1rem;
  font-weight: 200;
  color: #444;
  line-height: 1.6;
}

.tg-industry-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.tg-accordion {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tg-accordion-item {
  border-bottom: 1px solid #ccc;
  transition: background 0.2s ease;
}

.tg-accordion-title {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 12px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #003399;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tg-accordion-title:hover {
  background-color: #f4f6fb;
}

.tg-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0 12px;
}

.tg-accordion-item.active .tg-accordion-content {
  max-height: 300px;
  opacity: 1;
  padding: 12px;
}

.tg-accordion-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.tg-icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.tg-accordion-item.active .tg-icon {
  transform: rotate(180deg);
}

.tg-industry-image {
  flex: 1 1 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tg-industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .tg-industry-wrapper {
    flex-direction: column;
  }

  .tg-industry-image {
    max-height: 300px;
  }
}






























/*---------------------  The ThreatGaurd Advantage -----------------*/

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b0a2d;
  color: #fff;
}

.why-us-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1c1441, #0b0a2d);
}

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

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
  gap: 40px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1 1 50%;
  min-width: 300px;
}

.text h2 {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.text .highlight {
  font-weight: bold;
  color: #e5e5ff;
}

.text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c2c2dd;
  margin-bottom: 20px;
}

.text .bold {
  font-weight: 600;
  color: #ffffff;
}

.image {
  flex: 1 1 50%;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px #7f5fff);
}

/* Button Style */
.learn-more {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #7f5fff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.learn-more:hover {
  background-color: #7f5fff;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .row, .row.reverse {
    flex-direction: column;
  }

  .text, .image {
    text-align: center;
  }

  .text h2 {
    font-size: 1.3rem;
  }
}







/* ------------------------------ The ThreatGaurd Advantage Header ----------------------------- */
.tg-advantage-header {
  text-align: center;
  padding: 80px 140px 40px;
  background-color: #ffffff;
}

.tg-advantage-header h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 10px;
}

.tg-advantage-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #0033A0;
}




/* ---------------- The ThreatGaurd Shield Approach -------------------------- */
.tg-shield-approach {
  background-color: #ffffff;
  padding: 0px 20px 100px;
  position: relative;
}

.tg-shield-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
}

.tg-feature {
  width: 280px;
  position: absolute;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
  text-align: center;
}

.tg-feature i {
  font-size: 32px;
  color: #0046ff;
  margin-bottom: 10px;
}

.tg-feature h3 {
  font-size: 20px;
  margin: 10px 0 8px;
  font-weight: 700;
  color: #000000;
}

.tg-feature p {
  font-size: 15px;
  color: #574f4f;
  line-height: 1.5;
}

/* Center Shield Image */
.tg-center-image {
  width: 500px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tg-center-image img {
  width: 100%;
  height: auto;
}

/* Positioning */
.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .tg-feature {
    position: static;
    margin: 20px auto;
    width: 90%;
  }

  .tg-center-image {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin: 40px auto;
  }

  .tg-shield-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tg-advantage-header h2 {
    font-size: 26px;
  }

  .tg-advantage-header p {
    font-size: 15px;
  }
}










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

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

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

.blog-section {
  background-color: #fff;
}

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

.blog-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: #e5e9fd;
  color: #2d3fbd;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #0033A0;
  margin-bottom: 10px;
}

.blog-header .subline {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-post {
  background-color: #fafafa;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.blog-details {
  padding: 20px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.blog-title:hover {
  color: #2d3fbd;
}

.blog-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.blog-date {
  font-size: 13px;
  color: #888;
}

























/* ---------------- FOOTER TG ----------------------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #ffffff;
}

.footer {
  background-color: #ffffff;
  background-attachment: fixed;
  background-size: cover;  padding: 40px 120px;
  color: #ffffff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding-bottom: 0px;
}

.footer-logo {
  max-height: 90px;
}

.footer-icons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-contact-icons,
.footer-social-icons {
  display: flex;
  gap: 20px;
}

.circle {
  width: 48px;
  height: 48px;
  border: 2px solid #0033A0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0033A0;
  font-size: 18px;
  transition: background 0.3s;
  text-decoration: none;
}

.circle:hover {
  background-color: #e2e2e2;
  color: #1A4744;
}

.filled {
  background-color: #0033cc;
  color: #1A4744;
  border: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #000000;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #0033A0;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 1rem;
  margin-bottom: 8px;
  cursor: pointer;
  color: #000;
}

.footer-col li a {
  color: inherit;
  text-decoration: none;
}

.footer-col li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0 0;
  font-size: 12px;
  color: #ff0000;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-bottom-links a {
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-icons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
  }
}










/* =================================================================================================================================================
   🔁 CONTACT US PAGE Threatgaurd
====================================================================================================================================================  */
/*================== ABOUT HEADER BANNER ==================*/

/* Contact Hero Section Styles - Scoped for Isolation */
.tg-contact-hero {
  background: #0033A0;
  color: #fff;
  padding: 200px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tg-contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.tg-contact-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.tg-contact-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.tg-contact-btn {
  display: inline-block;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tg-contact-btn:hover {
  background-color: #0ea5e9;
}

/* Responsive */
@media (max-width: 768px) {
  .tg-contact-title {
    font-size: 2rem;
  }

  .tg-contact-subtitle {
    font-size: 1rem;
  }

  .tg-contact-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}















/* ✅ style.css - Contact Form + Right Info Panel */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #0751e3;
  color: #111;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 60px 100px;
  max-width: 1500px;
  margin: auto;
  background-color: #f0f4f8;
}

.contact-left {
  flex: 1 1 500px;
}

.contact-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
}

/* Form Box */
.demo-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.demo-form-box h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}

.demo-form-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #444;
}

.demo-form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-form-box label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #222;
}

.demo-form-box input,
.demo-form-box select,
.demo-form-box textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s ease;
  width: 100%;
}

.demo-form-box input:focus,
.demo-form-box select:focus,
.demo-form-box textarea:focus {
  border-color: #2960ae;
  outline: none;
  background-color: #fff;
}

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

.demo-form-box button {
  margin-top: 12px;
  background-color: #0034aa;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.demo-form-box button:hover {
  background-color: #002b91;
}

#form-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #000000;
}

/* Info Panel */
.info-block h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #000;
}

.info-block p,
.info-block li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.4;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block a {
  color: #0034aa;
  text-decoration: underline;
  font-weight: 500;
}

.info-block a i {
  margin-right: 6px;
}

.info-block p i {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 40px 16px;
  }

  .contact-right {
    padding-top: 0;
  }
}








/* =================================================================================================================================================
   🔁 About Us Threatgaurd
====================================================================================================================================================  */
/*================== ABOUT HEADER BANNER ==================*/
.about-header-banner {
  background-image: url('image/abougbg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-header-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.about-header-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.about-header-title span {
  color: #0f38ed;
}

.about-header-breadcrumb {
  margin-top: 10px;
  font-size: 1rem;
  color: #eee;
}

.about-header-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.about-header-breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-header-banner {
    height: 30vh;
    padding: 20px;
  }

  .about-header-title {
    font-size: 1.8rem;
  }

  .about-header-breadcrumb {
    font-size: 0.9rem;
  }
}



/*================== ABOUT THREATGAURD PVT LTD. ==================*/
.about-tg-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
}

.about-tg-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-tg-image img {
  max-width: 100%;
  width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-tg-content {
  flex: 1;
  min-width: 300px;
}

.about-tg-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-tg-heading .primary {
  color: #292994; /* Dark Blue */
}

.about-tg-heading .accent {
  color: #4c06ef; /* Accent Blue */
}

.about-tg-content p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 16px;
}

/*================== RESPONSIVE ==================*/
@media (max-width: 992px) {
  .about-tg-container {
    flex-direction: column;
    text-align: center;
  }

  .about-tg-image img {
    width: 90%;
    margin: 0 auto;
  }

  .about-tg-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .about-tg-heading {
    font-size: 1.4rem;
  }

  .about-tg-content p {
    font-size: 0.95rem;
  }
}



/*==================== WHY CHOOSE THREATGAURD ====================*/
.why-choose-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
}

.why-choose-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.why-choose-content {
  flex: 1;
  min-width: 300px;
}

.why-choose-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-heading .primary {
  color: #2a2a8e;
}

.why-choose-heading .accent {
  color: #0800ff;
}

.why-choose-content p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 20px;
}

.choose-list {
  padding-left: 20px;
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
}

.choose-list li {
  list-style: disc;
  margin-bottom: 8px;
}

.why-choose-image img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/*==================== RESPONSIVE ====================*/
@media (max-width: 992px) {
  .why-choose-container {
    flex-direction: column-reverse;
    text-align: left;
    gap: 40px;
  }

  .why-choose-image img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }

  .why-choose-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .why-choose-heading {
    font-size: 1.4rem;
  }

  .why-choose-content p,
  .choose-list {
    font-size: 0.95rem;
  }
}







/*--------------------- core value -----------------*/
.core-values-section {
  padding: 80px 20px;
  background: #ffffff;
}

.core-values-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.core-values-left {
  flex: 1 1 40%;
}

.core-values-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.core-values-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 24px;
}

.core-values-left img {
  max-width: 100%;
  border-radius: 12px;
}

.core-values-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.value-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #004080;
  margin-bottom: 8px;
}

.value-box p {
  font-size: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .core-values-container {
    flex-direction: column;
  }

  .core-values-left, .core-values-right {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .core-values-left h2 {
    font-size: 26px;
  }

  .value-box h3 {
    font-size: 18px;
  }

  .value-box p {
    font-size: 14px;
  }
}





/*---------------- vision mision goals --------------*/
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.vmg-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.vmg-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.vmg-card {
  background: #f3f6fc;
  border-left: 5px solid #004aad;
  padding: 25px 20px;
  flex: 1 1 300px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.vmg-card h3 {
  font-size: 1.5rem;
  color: #004aad;
  margin-bottom: 10px;
}

.vmg-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.vmg-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .vmg-container {
    flex-direction: column;
  }
}




/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b1035;
  color: #fff;
  line-height: 1.6;
}

/* Section container */
.business-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #041db0, #0a47f3, #00b3ff);
}

.business-container {
  max-width: 1200px;
  margin: auto;
}

/* Top heading */
.business-top h2 {
  padding-left: 300PX;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.business-top p {
  padding-left: 300px;
  font-size: 18px;
  color: #d0d4e2;
  max-width: 800px;
  margin-bottom: 100PX;
}

/* Bottom layout */
.business-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Image side */
.business-image {
  flex: 1 1 500px;
}

.business-image img {
  width: 80%;
  border-radius: 8px;
  object-fit: cover;
}

/* Content side */
.business-content {
  flex: 1 1 400px;
}

.business-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.business-content p {
  font-size: 16px;
  color: #d0d4e2;
  margin-bottom: 16px;
}

.business-content ul {
  list-style: none;
  padding: 0;
}

.business-content ul li {
  margin-bottom: 10px;
}

.business-content ul li a {
  color: #c29fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.business-content ul li a:hover {
  color: #8074ff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .business-top h2 {
    font-size: 28px;
  }

  .business-top p {
    font-size: 16px;
  }

  .business-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .business-top h2 {
    font-size: 22px;
  }

  .business-content h3 {
    font-size: 20px;
  }

  .business-content p {
    font-size: 15px;
  }

  .business-content ul li a {
    font-size: 15px;
  }
}



















/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

h1, h2, h3 {
  color: #1e2a38;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

ul li i {
  color: #007bff;
  margin-right: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/mdr-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.step img {
  width: 60px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  background-color: #1e2a38;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}









/* ========================================================
   🔁 Global Reset & Font
=========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000;
  line-height: 1.6;
}








/* ========================================================
   📌 Breadcrumb Navigation
=========================================================== */
.breadcrumb-container {
  padding: 40px 60px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #444;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a {
  text-decoration: none;
  color: #0033A0;
  font-weight: 400;
}

.breadcrumb .divider {
  color: #888;
}

.breadcrumb .active {
  color: #000;
  font-weight: 500;
}

/* ========================================================
   🧩 Page Title
=========================================================== */
.page-title {
  padding: 20px 60px 40px;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  color: #0033A0;
  text-align: center;
}

/* ========================================================
   🖼️ Hero Section
=========================================================== */
.hero {
  background: url('image/education.jpg') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0033A0;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0056D2;
}

/* ========================================================
   💡 MDR Section Boxes
=========================================================== */
.m365-section {
  padding: 60px 20px;
  background-color: #f6f9fc;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 400;
  color: #0033A0;
  margin-bottom: 40px;
  line-height: 1.4;
  text-align: left;
}

.box-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-box {
  background-color: #ffffff;
  border: 1px solid #dbe2ec;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 45%;
  min-width: 300px;
}

.info-box h3 {
  font-size: 1.1rem;
  color: #001F5C;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  color: #333;
  font-size: 0.95rem;
}

/* ========================================================
   📚 About MDR Section
=========================================================== */
.heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #0033A0;
  text-align: left;
}

.heading span {
  display: inline-block;
  border-bottom: 2.5px solid #0033A0;
  padding-bottom: 5px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.text {
  flex: 1 1 500px;
}

.text p {
  margin-bottom: 16px;
}

.image {
  flex: 1 1 400px;
}

.image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========================================================
   🧠 Experts Section
=========================================================== */
.experts-section {
  background: linear-gradient(135deg, #0b1e42 0%, #0e2a61 100%);
  padding: 60px 20px;
  color: white;
}

.experts-header {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 60px auto;
}

.experts-header .intro {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.experts-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin: 10px 0;
}

.experts-header .description {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0 auto;
  text-align: left;
}

.experts-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #000;
}

.experts-box h3 {
  font-size: 2rem;
    font-weight: 600;
  margin-bottom: 30px;
  color: #0e2a61;
  text-align: left;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expert {
  border-top: 1px solid #e0e6ed;
  padding-top: 20px;
}

.expert h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0e2a61;
}

.expert p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* ========================================================
   📱 Responsive Design
=========================================================== */
@media (max-width: 768px) {
  .breadcrumb-container,
  .page-title,
  .overlay,
  .content,
  .experts-header {
    padding: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .section {
    flex-direction: column;
  }

  .heading {
    font-size: 26px;
    text-align: center;
  }

  .experts-header h2 {
    font-size: 1.8rem;
  }

  .experts-box h3 {
    font-size: 1.3rem;
  }
}







body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000;
  }
  
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .faq-left {
    flex: 1 1 60%;
  }
  
  .faq-left h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0b2954;
    margin-bottom: 24px;
  }
  
  .accordion {
    border-top: 1px solid #e5e5e5;
  }
  
  .faq-item {
    border-bottom: 1px solid #e5e5e5;
  }
  
  .faq-question {
    background: none;
    border: none;
    font-size: 16px;
    color: #0b2954;
    padding: 16px 30px 16px 30px;
    width: 100%;
    text-align: left;
    position: relative;
    cursor: pointer;
    font-weight: 500;
  }
  
  .faq-question::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 16px;
    color: #2878ff;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s ease;
  }
  
  .faq-question.active::before {
    transform: rotate(90deg);
  }
  
  .faq-answer {
    display: none;
    padding: 0 30px 16px 30px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }
  
  .faq-answer.show {
    display: block;
  }
  
  .faq-right {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .faq-box h3 {
    font-size: 18px;
    color: #0b2954;
    margin-bottom: 12px;
  }
  
  .faq-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
  }
  
  .faq-box a {
    color: #2878ff;
    text-decoration: none;
  }
  
  .faq-box a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
    }
  
    .faq-left, .faq-right {
      flex: 1 1 100%;
    }
  
    .faq-question {
      font-size: 15px;
    }
  }
  















/* ========================================================
    governance-risk-compliance.html page
=========================================================== */
/* ========== General Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* ========== Buttons ========== */
  .btn-primary {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #00509e;
  }
  
  /* ========== Section 1: Hero ========== */
  .hero-section {
    background: linear-gradient(to right, #00264d, #003366);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ========== Section 2: What is GRC ========== */
  .what-is-grc {
    padding: 80px 20px;
    background-color: #f8f9fc;
    text-align: center;
  }
  
  .what-is-grc h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .what-is-grc p {
    font-size: 1.05rem;
    color: #444;
    max-width: 800px;
    margin: auto;
  }
  
  /* ========== Section 3: Key Features ========== */
  .key-features {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .key-features h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-item {
    background-color: #f1f4f8;
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  
  .feature-item i {
    font-size: 2rem;
    color: #00509e;
    margin-bottom: 15px;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.2rem;
    }
  
    .what-is-grc h2,
    .key-features h2 {
      font-size: 1.6rem;
    }
  
    .feature-item {
      padding: 20px 15px;
    }
  }
  





  /* ========== Section 4: Benefits of GRC ========== */
.grc-benefits {
    background-color: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
  }
  
  .grc-benefits .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 40px;
  }
  
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .benefit-card h4 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 12px;
  }
  
  .benefit-card p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ========== Section 5: Supported Compliance Frameworks ========== */
  .compliance-frameworks {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
  }
  
  .compliance-frameworks .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 30px;
  }
  
  .framework-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .framework-item {
    background-color: #e9eff7;
    color: #003366;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  /* ========== Section 6: Risk Dashboard Overview ========== */
  .risk-dashboard {
    background-color: #f8f9fc;
    padding: 80px 20px;
  }
  
  .dashboard-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .dashboard-left {
    flex: 1 1 50%;
    text-align: center;
  }
  
  .dashboard-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  
  .dashboard-right {
    flex: 1 1 50%;
  }
  
  .dashboard-right h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .dashboard-right p {
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 768px) {
    .dashboard-section {
      flex-direction: column;
      text-align: center;
    }
  
    .dashboard-right h2 {
      font-size: 1.5rem;
    }
  
    .dashboard-right p {
      font-size: 0.95rem;
    }
  }

  


/* ========== Section 7: Role-Based Access Control ========== */
.role-access {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .role-access .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 16px;
  }
  
  .role-access .section-subline {
    color: #555;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 40px;
  }
  
  .access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .access-box {
    background: #f1f6fc;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .access-box:hover {
    transform: translateY(-5px);
  }
  
  .access-box h4 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 12px;
  }
  
  .access-box p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ========== Section 8: Workflow Automation ========== */
  .workflow-automation {
    background-color: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
  }
  
  .workflow-automation .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 16px;
  }
  
  .workflow-automation .section-subline {
    color: #555;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 40px;
  }
  
  .automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .feature {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature h4 {
    color: #003366;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .feature p {
    color: #444;
    font-size: 0.95rem;
  }
  
  /* ========== Section 9: Testimonials ========== */
  .grc-testimonials {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .grc-testimonials .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 40px;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .testimonial {
    background-color: #f8f9fc;
    border-left: 4px solid #003366;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-style: italic;
  }
  
  .testimonial h5 {
    font-style: normal;
    color: #003366;
    margin-top: 15px;
    font-size: 0.95rem;
  }
  
  /* ========== Section 10: Real-Time Dashboards ========== */
  .grc-dashboards {
    background-color: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
  }
  
  .grc-dashboards .section-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 16px;
  }
  
  .grc-dashboards .section-subline {
    color: #555;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 40px;
  }
  
  .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .dashboard-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .dashboard-box h4 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 10px;
  }
  
  .dashboard-box p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ========== Section 11: CTA ========== */
  .grc-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003366, #00589c);
    color: #ffffff;
    text-align: center;
  }
  
  .grc-cta .cta-box {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .grc-cta .section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .grc-cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    background-color: #ffffff;
    color: #003366;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #f0f0f0;
  }
  
  /* ========== Responsive Fixes ========== */
  @media (max-width: 768px) {
    .section-heading {
      font-size: 1.6rem;
    }
  
    .section-subline,
    .dashboard-box p,
    .feature p,
    .testimonial p,
    .access-box p {
      font-size: 0.95rem;
    }
  }
  








  /* ========================================================
   🔁 Global Reset & Font for MDR Page
=========================================================== */
.mdr * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mdr body, .mdr html {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000;
  line-height: 1.6;
}

/* ========================================================
   📌 Breadcrumb Navigation
=========================================================== */
.mdr-breadcrumb-container {
  padding: 110px 60px 0;
}

.mdr-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #444;
  gap: 6px;
  flex-wrap: wrap;
}

.mdr-breadcrumb a {
  text-decoration: none;
  color: #0033A0;
  font-weight: 400;
}

.mdr-breadcrumb .divider {
  color: #888;
}

.mdr-breadcrumb .active {
  color: #000;
  font-weight: 500;
}

/* ========================================================
   🧩 Page Title
=========================================================== */
.mdr-title {
  padding: 20px 60px 40px;
  text-align: center;
}

.mdr-title h1 {
  font-size: 42px;
  font-weight: 400;
  color: #0033A0;
}

/* ========================================================
   🖼️ Hero Section
=========================================================== */
.mdr-hero {
  background: url('image/education.jpg') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.mdr-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.mdr-hero-content {
  max-width: 800px;
}

.mdr-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #ffffff;
}

.mdr-hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.mdr-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0033A0;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.mdr-btn:hover {
  background-color: #0056D2;
}

/* ========================================================
   💡 MDR Info Boxes
=========================================================== */
.mdr-info {
  padding: 60px 20px;
  background-color: #f6f9fc;
}

.mdr-container {
  max-width: 1200px;
  margin: auto;
}

.mdr-section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #0033A0;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.4;
}

.mdr-box-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.mdr-info-box {
  background-color: #ffffff;
  border: 1px solid #dbe2ec;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 45%;
  min-width: 300px;
}

.mdr-info-box h3 {
  font-size: 1.2rem;
  color: #001F5C;
  font-weight: 600;
  margin-bottom: 10px;
}

.mdr-info-box p {
  color: #333;
  font-size: 0.95rem;
}

/* ========================================================
   📚 About MDR Section
=========================================================== */
.mdr-about {
  padding: 60px 20px;
  background-color: #fff;
}

.mdr-container {
  max-width: 1200px;
  margin: auto;
}

.mdr-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: #0033A0;
  margin-bottom: 20px;
  text-align: left;
}

.mdr-heading span {
  display: inline-block;
  border-bottom: 2px solid #0033A0;
  padding-bottom: 5px;
}

/* Vertical content block */
.mdr-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}

/* Horizontal text + image block */
.mdr-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
}

.mdr-text {
  flex: 1 1 500px;
}

.mdr-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.mdr-image {
  flex: 1 1 400px;
}

.mdr-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .mdr-section {
    flex-direction: column;
    text-align: center;
  }

  .mdr-heading {
    font-size: 2rem;
    text-align: center;
  }

  .mdr-text p {
    font-size: 0.95rem;
  }

  .mdr-image {
    margin-top: 20px;
  }
}

/* ========================================================
   🧠 MDR Experts Section
=========================================================== */
.mdr-experts {
  background: linear-gradient(135deg, #0b1e42 0%, #0e2a61 100%);
  padding: 60px 20px;
  color: white;
}

.mdr-experts-header {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 60px auto;
}

.mdr-intro {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.mdr-experts-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin: 10px 0;
  color: #ffffff;
}

.mdr-description {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0 auto;
  text-align: left;
}

.mdr-experts-grid {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mdr-experts-title {
  grid-column: 1 / -1;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e2a61;
  text-align: left;
}

.mdr-expert {
  border-top: 1px solid #e0e6ed;
  padding-top: 20px;
}

.mdr-expert h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0e2a61;
}

.mdr-expert p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* ========================================================
   📱 Responsive Design for MDR Experts
=========================================================== */
@media (max-width: 768px) {
  .mdr-experts-header {
    padding: 20px;
    text-align: center;
  }

  .mdr-experts-header h2 {
    font-size: 1.8rem;
  }

  .mdr-experts-grid {
    padding: 30px 20px;
  }

  .mdr-experts-title {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* ========================================================
   ❓ FAQ Section
=========================================================== */
.mdr-faq {
  padding: 60px 20px;
}

.mdr-faq-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mdr-faq-left {
  flex: 1 1 60%;
}

.mdr-faq-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0b2954;
  margin-bottom: 24px;
}

.mdr-accordion {
  border-top: 1px solid #e5e5e5;
}

.mdr-faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.mdr-faq-question {
  background: none;
  border: none;
  font-size: 16px;
  color: #0b2954;
  padding: 16px 30px;
  width: 100%;
  text-align: left;
  position: relative;
  cursor: pointer;
  font-weight: 500;
}

.mdr-faq-question::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 16px;
  color: #2878ff;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.mdr-faq-question.active::before {
  transform: rotate(90deg);
}

.mdr-faq-answer {
  display: none;
  padding: 0 30px 16px 30px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.mdr-faq-answer.show {
  display: block;
}

.mdr-faq-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mdr-faq-box h3 {
  font-size: 18px;
  color: #0b2954;
  margin-bottom: 12px;
}

.mdr-faq-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.mdr-faq-box a {
  color: #2878ff;
  text-decoration: none;
}

.mdr-faq-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mdr-hero-content h1 {
    font-size: 2rem;
  }

  .mdr-hero-content p {
    font-size: 0.95rem;
  }

  .mdr-content {
    flex-direction: column;
  }

  .mdr-faq-wrapper {
    flex-direction: column;
  }
}



