/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Typography */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: 0.6px;
    color: #111827;
    background-color: #E9E9E9;
}

.lang-en {
    display: block;
}

.lang-hi {
    display: none;
}

.lang-mr {
    display: none;
}

.marathi .lang-en {
    display: none;
}

.marathi .lang-mr {
    display: block;
}

.Marathi {
    display: none;
}

.marathi-btn {
    font-size: 18px;          /* Increase font height */
    font-weight: 600;
    padding: 6px;    /*        Increase button size */
    height:40px;
    width:auto;
    border: 1px solid #444;
    background: white;
    cursor: pointer;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);  
    border-radius: 20px;
}

.marathi-btn:hover {
    background-color: #222;
    color: white;
}

.Empty{
    height: 60px;
}
@media (max-width: 800px) {
.Empty{
    height: 50px;
}
}

/* Language Switch Global */
.lang-switch {
    position:fixed; 
    text-align: left;
    margin: 15px 0;
    z-index: 1000; /* Ensures it's always on top */
}

/* Language Switch Class  */
.lang-switch button {
    font-size: 14px;          /* Increase font height */
    font-weight: 600;
    padding: 6px;    /*        Increase button size */
    height:30px;
    width:auto;
    border: 1px solid #444;
    background: #ffffff;
/*    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6f8fb 100%
    );  */
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);  
    border-radius: 20px;
  /*   color: #BBBBBB;
   transition: 0.3s ease;  */
}

.lang-switch button:hover {
    background-color: #222;
    color: white;
}

.lang-switch button:selection {
    background-color: #EEEEEE;
    color: #000000;
}  
 
/*
.active-lang {
    background-color: black;
    color: white;
}
*/

@media (max-width: 600px) {
    .lang-switch button {
        font-size: 14px;
        padding: 8px 16px ;
        height:30;
        width:auto;
    }

  .marathi-btn {
         font-size: 14px;
        padding: 8px 16px ;
        height:30;
        width:auto;
}

}

/* Language Switch Local */
.lang-switch2 {
    text-align: center;
    margin: 15px 0;
    z-index: 1000; /* Ensures it's always on top */
}

/* Language Switch Class  */
.lang-switch2 button {
    font-size: 18px;          /* Increase font height */
    font-weight: 600;
    padding: 6px;    /*        Increase button size */
    height:40px;
    width:auto;
    border: 1px solid #444;
    background: white;
    cursor: pointer;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7);  
    border-radius: 20px;
  /*   color: #BBBBBB;
   transition: 0.3s ease;  */
}

.lang-switch2 button:hover {
    background-color: #222;
    color: white;
}

.lang-switch2 button:selection {
    background-color: #EEEEEE;
    color: #000000;
}

/*
.active-lang {
    background-color: black;
    color: white;
}
*/

@media (max-width: 600px) {
    .lang-switch button {
        font-size: 14px;
        padding: 8px 16px ;
        height:30;
        width:auto;
    }
}

/* Page Header Class  */

  header.Page-header {
    background-color: #FFFFFF;
    margin-top: 10px;
    border: 1px solid #C9C9C9;
    padding: 10px;
    text-align: center;
    font-weight: bold;
  }

  header.Page-header h1 {
    font-size: 20px;
    font-weight: 400;
  }

.Heading {
    margin-top: 0px;
    border: 1px solid #C9C9C9;
    width: 100%;
    height: auto; 
    padding: 10px 10px;
    text-align: center;
    font-weight: 400;
    background-color: #D9D9D9;
  }

   h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10;
  } 

     h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10;
  } 

   p {
    font-size: 14px;
    font-weight: 400;
    margin: 5px 0;
    font-weight: 500;
    color:#000000;
  }

@media (max-width: 800px) {
  header.Page-header h1 {
    font-size: 14px;
    font-weight: 400;
  }

   h2 {
    font-size: 14px;
    font-weight: 400;
  } 

    h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10;
  } 
}

.page-container {
/*    padding-top: calc(70px + 10px);  Header height + desired gap */
    display:block;
    background-color: #E9E9E9;
    /* Or use a clamp if your header height is variable */
    /* padding-top: clamp(calc(80px + 10px), calc(10vh + 10px), calc(100px + 10px)); */
}

/* Home Page Intor  */ 

/* Home Page Intro Section - Container Only */

.HomePagIntro {
    background-color: #E9E9E9;
    padding: 10px 0px;
}

.IntroPage {
    background-color: #ffffff;
    width:90%;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #b71c1c;
}

.IntroHdr {
    color: #6666FF;
    font-size: 25px;
    font-weight: 800;
}

/* Header Styling */

.header {
    position: fixed;  
    top: 0;
    width: 100%;
    height: 70px; /*clamp(80px, 10vh, 100px); */
    backdrop-filter: blur(10px); /* Adjust the blur radius (10px) as needed */
    -webkit-backdrop-filter: blur(70px); /* For Safari support */
    background: linear-gradient(180deg, #1F2937, #1F2937, #1F2937,#E9E9E9);
/*    background-color: #1F2937; /* rgba(30, 30, 20,0.9);  */
    display: flex;
    justify-content: space-between;  /* Push menu to the right */
    padding: 0 5px; /* Add padding on left and right padding: 10px 10px; */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);   
    z-index: 1000; /* Ensures it's always on top */
} 

/* Logo Section */
.logo-container {
    display: flex;
}

.logo {
    margin-top: 10px;
 /*   margin-top: 5px;  
    align-items: center;  */
    width:  48px;
    height: 48px;
}

.company-info {
    margin-left: 10px;
}

.company-name {
    margin-top: 5px;
    font-weight: 600; /* bold;; */
    font-size: 30px;
    color: #FFFFFF;
}

.tagline {
    font-weight: 600;
    color: rgb(255,255,255);
    font-size: 16px;
    overflow: hidden; /* Hides overflowing text */
    margin-bottom: 5px;
}

/* Navigation Menu */
.nav-menu ul {
    margin-top: 20px;
    list-style: none;
    display: flex;
    align-items: right;
}

.nav-menu ul li {
    margin-left: 5px;
}

.nav-menu ul li a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: rgb(255,255,255);
    text-decoration: none;
    font-size: 20px;
    padding: 5px 5px;
    transition: 0.3s ease-in-out;
}

.nav-menu ul li a.active {
 /*   background-color: #007bff; /* Example: Highlight color */
    background: rgb(90, 90, 90);  
    color: rgb(255,255,0);
    font-weight: 200; /*bold; /* Optional: Make it bold */
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
    /* Add other styling as needed */
  }

.nav-menu ul li a:hover {
    background: rgb(180, 180, 180);  
    color: rgb(20,20,20);
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
}

/* Mobile Menu Icon */
.menu-icon {
    margin-top: 15px;
    margin-right: 20px;
    display: none;
    cursor: pointer;
    align-items: left; 
}

.menu-icon img {
    width: 32px;
    height: 32px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    right: 5px;
    top: 60px;
    background: rgba(235, 235, 255,0.9);
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.8);
    border: 3px solid rgb(235,235,235);
    z-index: 1000; 
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    padding: 0px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size:  20px;
    color: rgb(56,62,70);
}

.mobile-menu ul li a:hover {
    background: rgb(230, 230, 230);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}  

/* Responsive Design */
@media (max-width: 800px) {
     .header {
        height: 60px; /*clamp(80px, 10vh, 100px); */
    }

    .logo {
        margin-top: 15px;
        width:  32px;
        height: 32px;
    }

    .company-name {
        margin-top: 7px;
        font-size: 20px;
        font-weight:600;
        color: rgb(255,255,255);
      }

      .tagline {        
        font-weight:600;
        font-size: 12px;
        color: rgb(255,255,255);
        }

        .nav-menu ul li a {
    font-weight: 400;
    font-size: 16px;
}
 
.mobile-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    padding: 5px 5px;
    color: rgb(255,255,255);
    font-weight: 600;
}
}

@media (min-width: 800px) and (max-width: 1050px) {
     .header {
        height: 70;
    }

    .company-name {
        margin-top: 5px;
        font-size: 30px;
        color: #FFFFFF;
        font-weight:500;
      }

      .tagline {        
        font-weight:500;
        font-size: 22px;
        color: rgb(255,255,255);
        }

    .mobile-menu ul li a {
        text-decoration: none;
        font-size: 16px;
        padding: 5px 5px;
        color: rgb(255,255,255);
        font-weight: 600;
    }
}

/************************************  PAGE HEADER  **************************************** */
.PgHdrFlex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgb(56,62,70);  
    padding: clamp(10px, 2vh, 20px) 5px; 
    position:relative;
    height: auto;  
    margin-top: clamp(10px, 10vh, 20px); /* Pushes it below the fixed header */
}

/************************************  BANNER AREA  **************************************** */

/* **************** F O O T E R *********************** */

.Footer {
    margin-top: 100px;
 /*   justify-content: center; /* Horizontally center items */
 /*   align-items:center;
    width: 100%; /* Set width to 80% of the screen (adjust as needed) */
    padding: 20px 0;
    text-align: center;
    width:100%;
    Height:auto;
    flex-wrap: wrap;
    background:#111827;
}

       /* Icons Area */
       .footer-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-icons img {
        width: 40px;
        height: 40px;
    }

    /* Flex Containers */
    .footer-content {
        display: flex;
        justify-content: space-between;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        padding: 10px;
    }

    /* Text Styles */
    .footer-section hdr2 {
        font-family: Arial, Helvetica, sans-serif;
        color: #D1D5DB;
        font-weight: 200;
        font-size: 30px;
        margin: 5px 0;
        text-align: left;
    }

    .footer-section p {
        font-family: Arial, Helvetica, sans-serif;
        color: #D1D5DB;
        font-weight: 200;
        font-size: 16px;
        margin: 5px 0;
        text-align: left;
    }

    .footer-section p1 {
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(255, 255, 255);
        font-weight: 200;
        font-size: 16px;
        margin: 5px 0;
        text-align: center;
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-section {
            text-align: center;
        }

    * Text Styles */
    .footer-section hdr2 {
        color: rgb(255, 255, 255);
        font-weight: 500;
        font-size: 30px;
    }

    .footer-section p {
        color: rgb(255, 255, 255);
        font-weight: 400;
        font-size: 16px;
    }

    .footer-section p1 {
        color: rgb(255, 255, 255);
        font-weight: 400;
        font-size: 16px;
    }

    }

/* ********************** ABBOUT PAGE STYLES ************************ */

.gap {
    height: 40px; /* Adjust the height for the gap size */
    width: 100%; /* Optional: to ensure it takes full width */ 
}

.APBanner {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end; 
    width: 100%; 
    padding: 20px 0;
    text-align: center;
    Height:auto;
    flex-wrap: wrap;
    background:rgb(56,62,70);  
}

.APBanner-flex {
    margin-top: 10px;
    margin-right: 20px;;
    display:flex;
    width:70%;
    padding: 20px 0;
    text-align: left;
    Height:auto;
    flex-wrap: wrap;
    background:rgb(56,62,70);
    flex-direction: column;
}

.APBflex-text1 {
    align-self: flex-start;  
 /*   margin:5 10 5 auto;  */
    width:100%;
    margin-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 35px;
    padding:10px;  
    background:rgb(56,62,70);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);  
    word-wrap: break-word;
}

.APBflex-text2 {
    margin-top: 10px;
    align-self: flex-start;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 20px;
 /*   padding:10px;  */
    word-wrap: break-word;
}

.APBflex-text3 {
    margin-top: 10px;
    align-self: flex-start;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(235, 235, 255);
    font-weight: 200;
    font-size: 16px;
 /*   padding:10px;  */
    word-wrap: break-word;
}

.APB-content {
    position: fixed; /*absolute;*/
    top: 20%;
    left: 5px; /* Adjust as needed */
 /*   transform: translateY(-50%);  */
    width: 30%;
    height: auto;
    background: rgba(56, 62, 70, 0.6); /* Main Window */
    box-shadow: 16px 32px 64px rgba(0, 0, 0, 0.8);  
    padding: 10px; /* Space around client area */
}

.APB-Advrtz {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure no extra space */
}

.APB-Advrtz img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire client area */
}

.APB-client {
    position: relative;
    top: 50%;
    left: 2%; /* Adjust as needed */
    transform: translateY(-50%);
    width: 25%;
    height:70%; 
    background: rgb(255,255,255); 
}

.APB-title{
    margin-top:10px;
    align-self: center;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
  /*  letter-spacing: 0.6px;
    line-height: 1.2;  */
    font-size: clamp(45px, 5vh, 75px);
    word-wrap: break-word;
    padding:10px;
    background: rgba(56,62,70,0.6);   /* background: rgb(56,62,70);  */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .APBanner-flex {
        margin-right: auto;
        width:90%;
    }
    .APB-content {
     /*   display:none;  */
        position: static; /*absolute;*/
        top: 45%;
        align-self: center;
        width: 90%;
    }
    .APBflex-text1,.APBflex-text2,.APBflex-text3{
        font-weight: 400;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .APBanner-flex {
        margin-right: auto;
        width:90%;
    }
    .APB-content {
     /*   display:none;  */
        top: 6%;
        left: 5px;
        width: 40%;
    }
    .APBflex-text1,.APBflex-text2,.APBflex-text3{
        font-weight: 400;
    }
}

/* ******************* C O N T A C T     P A G E ***************************** */

/* -------------- (OSA) Our Service Approach Banner ----------------   */

.Contact-Banner {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: top; /* Vertically align items */
    justify-content: flex-start; /* Align icon & text */
    background: rgb(59,62,70);
    padding: 20px;
    margin: 20px auto;
 /*   max-width: 900px;  */
    width:60%;
}

/* Text container */
.CB-Text {
    margin-left: 20px;
    text-align: left;
    color: rgb(255, 255, 255);
}

/* Header Text */
.CB-Text1 {
    font-size: 20px;
    font-weight: 200;
    margin: 0;
}

/* Paragraph Text */
.CB-Matter {
    font-size: 30px;
    font-weight: 200;
    margin-top: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 800px) {
    .Contact-Banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width:95%;
    }
    
    .CB-img {
        display: none;
        width: 80px; /* Reduce icon size for mobile */
        height: 80px;
    }
    .CB-Matter {
        font-weight: 400;
    }

    .CB-Text {
        margin-left: 0;
        margin-top: 10px;
        font-weight: 400;
    }

    .CB-Text1 
    {
        font-weight: 400;
    }
}


/* ------------ FEATURE COMPARIG TABLE -------------------*/

.Header-Text {
    text-align: center;
    font-size: 30px;
}

.feature-text  {
    font-size: 18px;
    max-width: 80%;
    margin: auto;
}

.table-container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #f4f4f4;
    text-align: center;
    justify-content: center;
    margin: 20px auto; 
    width: 80%;
}

/* Table Styling */
.feature-table {
    width: 100%;
 /*   margin: auto;   */
    border-collapse: collapse;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: 1px solid #080808;
}

/* Table Header */
.feature-table thead th {
    background-color: rgb(59,62,70);
    padding: 15px; 
    text-align: center;
    border: 1px solid #080808;
}

/* Table Data */
.feature-table tbody td {
    background-color: rgb(255,255,255);
    padding: 15px;  
    text-align: center;
    border: 1px solid #080808;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .feature-text  {
        font-size: 16px;
        font-weight: 400;
    }

    .table-container {
        overflow-x: auto; /* Enable horizontal scrolling */
        font-size: 16px; /* Reduce font size */
    }

    feature-table {
        width: 100%; /* Make table full width */
        font-size: 16px; /* Reduce font size */
        font-weight: 400;
    }

    .feature-table thead th, .feature-table tbody td {
        padding: 10px; /* Reduce padding */
        font-weight: 400;
    }
}



.blog-link {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* inherit text color */
  color:rgb(100,100,100);
}

.blog-link:hover {
  color:rgb(200,200,200);
  font-size: 25px;
  text-decoration: underline; /* underline on hover */
}

@media (max-width: 800px) {
 
}

/* ************* STYLES FOR BLOG TEXT ******************* */

body.blog-body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    color: #333;
  }

  header.blog-header {
    background-color: #003366;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
  }

  .blog-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .blog-content {
    padding: 30px;
  }

  .blog-content hdr2 {
    color: rgb(255,255,255);;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .blog-container {
    max-width: 700px;
  }
}

/* NEW STYLES FOR LEGENDARY WORKS  */

    .LDContainer {
      background-color: rgb(30,30,30);
      display: flex;
      flex-wrap: wrap;       /* allows wrapping to next line */
      justify-content: center;
      gap: 20px;             /* spacing between cards */
      padding: 20px;
    }

    /* Display Board (Card) */
    .DisplayBoard {
      background-color: rgb(30,30,20);
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      width: 240px;          /* fixed width */
      height: 400px;         /*  fixed height */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px;
      box-sizing: border-box;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.DisplayBoard1 {
      background-color: rgb(30,30,20);
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      width: 80%;          /* 240px fixed width */
      margin: 20px auto;
      height: auto;          /* fixed height */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px;
      box-sizing: border-box;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effect */
    .DisplayBoard:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 16px rgba(0,0,0,1);
    }

    .DisplayBoard1:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 16px rgba(0,0,0,1);
    }

    /* Image */
    .DBImage {
      width: 200px;
      height: 120px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    /* Heading */
    .DBHeading {
      font-family: Arial, sans-serif;
      font-size: 30px;
      font-weight: bold;
      margin: 10px 0;
      text-align: center;
    }

    .DBHeading1 {
      font-family: Arial, sans-serif;
      font-size: 22px;
      font-weight: bold;
      margin: 10px 0;
      text-align: center;
    }

    /* Text */
    .DBText {
      font-family: Arial, sans-serif;
      font-size: 20px;
      font-weight: normal;
      line-height: 1.4;
      text-align: justify;
      overflow: hidden;      /* ensures text stays inside fixed height */
    }

    /* Text */
    .DBText1 {
      font-family: Arial, sans-serif;
      font-size: 20px;
      font-weight: normal;
      line-height: 1.4;
      text-align: center;
      overflow: hidden;      /* ensures text stays inside fixed height */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .DisplayBoard {
        width: 90%;          /* cards take most of screen width */
        height: auto;        /* allow flexible height on mobile */
      }

      .DBImage {
        width: 100%;         /* image scales with card */
        height: auto;
      }

      .DBHeading {
        font-size: 24px;
      }

      .DBText {
        font-size: 18px;
      }
    }

    /* Horizental Board Styles */
/* ================================================================
   HzContainer Layout
================================================================== */

.HzContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

/* ==========================
   HzBoard Card
========================== */

.HzBoard {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 18px 16px 70px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f9fc 100%
    );
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 40, 80, 0.05);
    overflow: hidden;
    min-height: 85px;
}

/* ==========================
   Big Background Year
========================== */

.HzBoard::before {
    content: attr(data-year);
    position: absolute;
    left: 5px;  
    top: 50%;
  transform: translateY(-50%);  
    font-size: 28px;
    font-weight: 600;
    color: rgba(30, 60, 90, 0.1);
    pointer-events: none;
    user-select: none;
}

/* ==========================
   Image
========================== */

.HzImage {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    opacity: 0.8;
    border-radius: 5px;;
}

/* ==========================
   Text Area
========================== */

.HzTextArea {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Heading */
.HzHeading {
    font-size: 15px;
    font-weight: 800;
    color: #1c2c3c;
}

/* Items */
.HzItem {
    font-size: 12px;
    font-weight: 600;
    color: #444444;
    line-height: 1.3;
}

/* ==========================
   Mobile View
========================== */

@media (max-width: 768px) {

    .HzContainer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .HzBoard {
        padding: 12px 14px 12px 60px;
        min-height: 70px;
    }

    .HzBoard::before {
        font-size: 36px;
        left: 12px;
    }

    .HzHeading {
        font-size: 14px;
    }

    .HzItem {
        font-size: 11px;
    }

    .HzImage {
        width: 30px;
        height: 30px;
    }
}
/* ------------------- Mono Board Styles ------------------------- */

    /* Container */
.MonoContainer {
  background-color: #E9E9E9;
  display: block;
  flex-direction: column;   /* stack boards vertically */
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Display Board */
.MonoBoard {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
  flex: 0 0 80%;            /* force exact 80% width */
  width: 80%;               /* explicit width */
  margin: 10px auto;
  height: auto;
  display: flex;
  flex-direction: row;      /* image left, text right */
  align-items: flex-start;
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.MonoBoard:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 16px rgba(0,0,0,1);
}

.MonoBoard:hover .MonoHeading, .MonoBoard:hover .MonoItem 
{ 
    color: rgb(200,200,0); 
}

/* Image section */
.MonoImage {
  width: 64px;             /* fixed image size */
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 15px;
}

/* Text section */
.MonoTextArea {
  flex: 1;                  /* take remaining space */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Heading */
.MonoHeading {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;  /*  bold;  */
  margin-bottom: 10px;
  color: #0000FF;
}

/* Text items */
.MonoItem {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;  /*  normal;  */
  line-height: 1.4;
  margin-bottom: 6px;
  color: #111827;
}

.MonoLink {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep text colors from child styles */
  display: block;          /* make the link behave like a block wrapper */
}


/* Responsive Design */
@media (max-width: 768px) {
  .MonoBoard {
    width: 90%;             /* cards take most of screen width */
    flex-direction: column; /* stack image above text */
    align-items: center;
  }

  .MonoImage {
    width: 100%;
    height: auto;
    margin: 0 0 15px 0;
  }

  .MonoTextArea {
    width: 100%;
    align-items: center;
  }

  .MonoHeading {
    font-size: 20px;
    text-align: center;
  }

  .MonoItem {
    font-size: 16px;
    text-align: center;
  }
}

/* Page List Link Styles */
/* Container */
/* 2. Create a parent wrapper rule */
.container-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px; /* THIS fixes the uneven gaps permanently */
    padding: 20px 0;
    height: auto; 
}

.pglilnContainer {
    background-color: #FFFFFF;
    width: 90%;          /* Increased for better mobile view */
    max-width: 800px;    /* Prevents it from getting too wide on desktop */
    height: auto;
    padding: 20px;
    
    /* FIX: Use only margin-bottom for spacing between blocks */
    margin: 0 auto; /* Removed the 20px top/bottom */
    
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2); /* Reduced opacity for a cleaner look */
    
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

    .pglilnTxt {
      color: #2563EB;
      font-family: Arial, sans-serif;
      font-weight: 600;
      font-size: 18px;
      text-align: center;
      margin-bottom: 10px;
    }

    /* Link style */
    .pglilnLink {
      color: #2563EB;
      font-family: Arial, sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: font-size 0.3s ease;
      text-align: center;
      margin-bottom: 10px;
    }

    /* Special case: after the 4th link 
    .pglilnLink:nth-child(4) {
       margin-bottom: 80px;     
     }    bigger gap after 4th link */

    /* Hover effect */
    .pglilnLink:hover {
      color: #1F2937;
      font-size: 18px;
    }

    .pglilnLink:active {
      color: rgb(7, 74, 100);
      font-size: 18px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .pglilnContainer {
        width: 95%;
        padding: 15px;
      }

      .pglilnLink {
        font-size: 14px;
      }

      .pglilnTxt{
        font-size: 18px;
      }

      .pglilnLink:hover {
        font-size: 18px;
      }
    }

    /* Button container to center horizontally  ----------------------------------*/
    .btnContainer {
      display: flex;
      justify-content: center;
      margin-top: 50px;
    }

    /* Button style */
    .uttoneBtn {
      background-color: #111827;
      color:  #D1D5DB;
      font-family: Arial, sans-serif;
      font-size: 25px;
      font-weight: normal;
      padding: 12px 30px;
      border: none;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      cursor: pointer;
      text-decoration: none; /* remove underline for link */
      transition: all 0.3s ease;
    }

    /* Hover effect */
    .uttoneBtn:hover {
      transform: scale(1.05); /* slightly enlarge */
      color: rgb(200,200,0);  /* change text color */
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .uttoneBtn {
        font-size: 20px;
        padding: 10px 20px;
      }
    }

/* Horizental Compact Board */

     .HzSContainer {
      background-color: #E9E9E9;
      display: flex;
      flex-wrap: wrap;       /* allows wrapping to next line */
      justify-content: center;
      gap: 20px;             /* spacing between cards */
      padding: 20px;
    }

    /* Display Board (Card) */
    .HzSBoard {
      background-color: #F5F7FA;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      width: 28%;          /* 500px;  wider to fit image + text */
      height: 20%;         /* fixed height */
      display: flex;
      flex-direction: row;   /* image left, text right */
      align-items: flex-start;
      padding: 15px;
      box-sizing: border-box;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

      .HzSBoard1 {
      background-color: rgb(30,30,20);
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      width: 28%;          /* 500px;  wider to fit image + text */
      height: 20%;         /* fixed height */
      display: flex;
      flex-direction: center;   /* image left, text right */
      align-items: justify;
      padding: 15px;
      box-sizing: border-box;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effect */
    .HzSBoard:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 16px rgba(0,0,0,1);
    }

    /* Hover effect */
    .HzSBoard1:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 16px rgba(0,0,0,1);
    }

    /* Image section */
    .HzSImage {
      width: 64px;           /* 35%;  about 35% of card */
      height: 64px; 
      border-radius: 10px;
      object-fit: cover;
      margin-right: 15px;
    }

    /* Text section */
    .HzSTextArea {
      width: auto;             /*65%; remaining space */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    /* Heading */
    .HzSHeading {
      font-family: Arial, sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* Text items */
    .HzSItem {
      font-family: Arial, sans-serif;
      font-size: 16px;
      color : rgb(200,200,255);
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 6px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .HzSBoard {
        width: 90%;          /* cards take most of screen width */
        height: auto;        /* flexible height on mobile */
        flex-direction: column; /* stack image above text */
        align-items: center;
      }

      .HzSImage {
        width: 100%;
        height: auto;
        margin: 0 0 15px 0;
      }

      .HzSTextArea {
        width: 100%;
        align-items: center;
      }

      .HzSHeading {
        font-size: 20px;
        text-align: center;
      }

      .HzSItem {
        font-size: 16px;
        text-align: center;
      }
    }

    /* ------------------------ Short Link Board -----------------------  */

    /* Board container */
    .ShLnContainer {
      background-color: rgb(50,50,40);
      width: 80%; 
      margin: 20px auto;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      display: flex;
      flex-wrap: wrap;           /* allow links to wrap to new lines */
      justify-content: center;   /* center align links inside board */
      gap: 20px;                 /* equal gap between links */
    }

    /* Link style */
    .ShLnLink {
      position: relative;        /* needed for underline animation */
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: 14px;
      color: rgb(200,200,200);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* Hover effect: text grows + color change */
    .ShLnLink:hover {
      font-size: 16px;
      color: rgb(200,200,0);
    }

    /* Underline animation */
    .ShLnLink::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;              /* just below the text */
      width: 0%;
      height: 2px;
      background-color: rgb(200,200,0);
      transition: width 0.3s ease;
    }

    .ShLnLink:hover::after {
      width: 100%;               /* underline expands fully on hover */
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .ShLnContainer {
        width: 95%;
        gap: 20px;               /* smaller gap on mobile */
      }
      .ShLnLink {
        font-size: 14px;
      }
      .ShLnLink:hover {
        font-size: 16px;
      }
    }

    /* ------------------- Text List ------------------------- */
    .TxtLstContainer {
      background-color: rgb(150,150,20);
      width: 80%;
      margin: 20px auto;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.8);
      display: flex;
      flex-wrap: wrap;           /* allow items to wrap to new lines */
      justify-content: center;   /* center align items inside board */
      gap: 10px;                 /* equal gap between items */
    }

    /* Text item style */
    .TxtLstItem {
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: rgb(20,20,20);
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .TxtLstContainer {
        width: 95%;
        gap: 20px;               /* smaller gap on mobile */
      }
      .TxtLstItem {
        font-size: 14px;
      }
    }

    /* ------------ Info Board ---------------------- */
/* ===============================
   InfoBoard - Peak 1 Highlight
================================= */

.InfoBoard {
    display: flex;
    gap: 25px;
    padding: 40px 35px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f5ee 100%
    );
    border: 2px solid rgba(185, 150, 60, 0.35);
    border-radius: 10px;
    box-shadow:
        0 20px 50px rgba(120, 95, 40, 0.12);
    position: relative;
    overflow: hidden;
}

/* Subtle Gold Top Accent Line */
.InfoBoard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #bfa046,
        #e6c76a,
        #a8842f
    );
}

/* Image */

.InfoImage {
    width: 95px;
    height: 95px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Text Area */

.InfoTextArea {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Heading */

.InfoHeading {
    font-size: 20px;
    font-weight: 700;
    color: #2c1f0f;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Normal Items */

.InfoItem {
    font-size: 14px;
    font-weight: 500;
    color: #1e4637;
    line-height: 1.6;
}

/* Highlight Items */

.InfoItem.highlight {
    font-weight: 600;
    color: #946b11;
}

/* Decorative Separator Lines (replace dashed text) */

.InfoItem:contains("------------------------------------") {
    display: none;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .InfoBoard {
        flex-direction: column;
        padding: 28px 20px;
        gap: 18px;
    }

    .InfoImage {
        width: 75px;
        height: 75px;
        align-self: center;
    }

    .InfoHeading {
        font-size: 17px;
        text-align: center;
    }

    .InfoTextArea {
        gap: 8px;
    }

    .InfoItem {
        font-size: 13px;
        font-weight: 600;
    }
}

/* --------------------- Tab2 Styles ------------------------ */

    .TabContainer {
      display: inline-flex; /* width = total tabs only */
      background: rgb(50,50,40);
      margin: 20px; /* leaves rest of screen empty */
      border-radius: 6px;
    }

    /* Individual tabs */
    .Tab {
      padding: 5px 15px;
      color: white;
      text-decoration: none;
      text-align: center;
      transition: color 0.3s ease, background 0.3s ease;
    }

    /* Hover effect */
    .Tab:hover {
      color: yellow;
    }

    /* Active tab (card style) */
    .Tab.active {
      background: gray;
      border-radius: 6px;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
    }

    /* Responsive: stack vertically on small screens */
    @media (max-width: 600px) {
      .TabContainer {
      /*  flex-direction: column;  */
        width: auto;
      }
      .Tab {
        border-bottom: 1px solid #444;
      }
    }

    
    /* General Flex Background */
.GFlex, .LRFlex {
  background-color: #E9E9E9;
  padding: 10px;
}

/* 1) Serial Display - GFlex */
.GFlex {
  display: flex;
  flex-wrap: wrap;          /* Wrap to next line */
  justify-content: flex-start; /* No alignment, items flow naturally */
}

.GFlex > * {
  margin: 5px; /* optional spacing between flex items */
}

/* 2) Left-Right Flex - LRFlex */
.LRFlex {
  display: flex;
  justify-content: space-between; /* One left, one right */
  align-items: center;
}

/* Responsive: On mobile, stack vertically and center */
@media (max-width: 768px) {
  .GFlex {
    flex-direction: column;
    align-items: center; /* Center items vertically */
  }

  .LRFlex {
    flex-direction: column;
    align-items: center; /* Both items centered */
  }
}

/* Landing Page Banner Text */

.LDBnrContainer{
  position: relative;            
  background-color: #E9E9E9;  
  margin-top: 0px;
  padding: 0px;  
  display: flex;
  flex-wrap: wrap;          /* Wrap to next line */
  flex-direction: column; /* stack image above text */
}

.LDBnrBgText {
 /*   position: absolute;  */
    flex-wrap: wrap;  
    flex-direction: column;
    margin: 10px;
    left: 40px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.LDBnr{
  display: flex;
  flex-wrap: nowrap;          /* Wrap to next line */
  justify-content: flex-start; /* No alignment, items flow naturally */
/*  border: 1px solid #111827;  */
}

.LDBnrHeading1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 70px;
  margin-left: 0px;
  height:96px;
  width:96px;
  color: #111827;
  border-radius: 48px;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  display: flex;             /* 1. Enable Flexbox */
  justify-content: center;    /* 2. Center horizontally */
  align-items: center;        /* 3. Center vertically */
}

.LDBnrText{
  padding: 10px;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;          /* Wrap to next line */
  flex-direction: column; /* stack image above text */
/*  justify-content: flex-start;  No alignment, items flow naturally */
}

.LDBnrHeading2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  margin-left: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  flex-wrap: wrap; 
  color: #111827;
}

.LDBnrHeading3 {
   font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  flex-wrap: wrap; 
  color: #4B5563;
}

@media (max-width: 768px) {
.LDBnrContainer{
  flex-direction: column; /* stack image above text */
}

.LDBnr{
/*  align-items: center;  */
  margin: 0px,auto; 
  width: 90%;
}
}


/* ===============================================================================
   HEADER BASE
======================================================================================*/
/* ===== Ghdr Base Reset ===== */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== Ghdr Fixed Header ===== */
.Ghdr-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.Ghdr-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    text-align: center;
}

.Ghdr-logo a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

/* ===== Ghdr Navigation (Below Header) ===== */
.Ghdr-nav {
    position: fixed;
    top: 60px; /* Height of header */
    width: 100%;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    z-index: 999;
}

.Ghdr-menu {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 10px;
    gap: 18px;
}

/* ===== Ghdr Links ===== */
.Ghdr-link {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    padding: 6px 4px;
    transition: all 0.3s ease;
}

.Ghdr-link:hover {
    color: #000;
}

/* ===== Active Menu Style ===== */
.Ghdr-link.Ghdr-active {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid #000;
}

/* ===== Spacer for Fixed Header + Nav ===== */
.Ghdr-spacer {
    height: 110px; /* header + nav combined */
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {

    .Ghdr-container {
        padding: 12px 10px;
    }

    .Ghdr-nav {
        top: 55px;
    }

    .Ghdr-menu {
        gap: 12px;
    }

    .Ghdr-spacer {
        height: 105px;
    }

    .Ghdr-logo a {
        font-size: 20px;
    }

}

/* ================================================================
   Simple Fixed Header - Day Theme
=====================================================================*/

.GHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6f8fb 100%
    );
    border-bottom: 1px solid #e4e9f0;
    z-index: 1000;
}

/* Inner Container */

.GHeader-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Section */

.GHeader-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.GHeader-logo {
    width: 40px;
    height: 40px;
 /*   object-fit: contain;  */
}

/* Title + Slogan */

.GHeader-text {
    display: flex;
    flex-direction: column;
}

.GHeader-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2e3d;
}

.GHeader-slogan {
    font-size: 14px;
    font-weight: 600;
    color: #2f3b4d;
    letter-spacing: 0.3px;
}

/* Navigation */

.GHeader-nav {
    display: flex;
    align-self:flex-end;
    gap: 25px;
}

.GHeader-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #2c3a48;
    transition: color 0.2s ease;
}

.GHeader-nav a:hover {
    color: #b58d2b;
}

/* Mobile */

@media (max-width: 768px) {

    .GHeader-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .GHeader-nav {
        gap: 18px;
    }

    .GHeader-title {
        font-size: 18px;
        font-weight: 500;
    }

    .GHeader-slogan {
        font-size: 12px;
        font-weight: 500;
    }
}


/* ============================================================
  Page Visible title 
============================================================*/ 

.PgTitle {
    display: flex;  
    position: fixed;
    top: 60px;           /* Anchors to top of viewport */
    left: 0;         /* Anchors to right of viewport */
    
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6f8fb 100%
    );
    height: 40px;
    width: 100%;      /* Element only takes up necessary space */
    padding: 20px;
    
    align-items: center;    /* Vertically centers text in the 40px height */
    justify-content: center; /* Centers text within the frame's width */
    
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    z-index: 800;
    border-radius: 5px;
    border:#aaaaaa thin;
 /*   border-color: #0c0303;  */
}

@media (max-width: 768px) {
.PgTitle {
    justify-content: right; /* Centers text within the frame's width */
    }
}

/* =========================================================================
   GBanner Full Screen Hero
============================================================================ */

/* Cross-platform system font stack */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Helvetica, Arial,
                 "Noto Sans", sans-serif;
    background: #ffffff;
}

/* Hero Section */
.GBanner-hero {
    position: relative;
    min-height: 80vh;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;

    /* Professional soft daylight gradient */
    background:
        radial-gradient(circle at 20% 30%, rgba(233, 233, 233, 0.6), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(220,225,235,0.5), transparent 60%),
        linear-gradient(to bottom, #ffffff 0%, #f3f6fa 100%);
}

/* Subtle overlay for depth */
.GBanner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
                rgba(100,100,255,0.2),
                rgba(255,255,255,0.9));
    z-index: 1;
}

/* Content container */
.GBanner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Main Title */
.GBanner-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 0.5px;
}

/* Subtitle */
.GBanner-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    color: #444;
    font-weight: 600;
}

/* Domains */
.GBanner-domains {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

/* Scope */
.GBanner-scope {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ================================
   Responsive Design
================================ */

@media (max-width: 1024px) {

    .GBanner-title {
        font-size: 34px;
    }

    .GBanner-subtitle {
        font-size: 18px;
    }

    .GBanner-domains {
        font-size: 16px;
    }

    .GBanner-scope {
        font-size: 15px;
    }
}

@media (max-width: 600px) {

    .GBanner-hero {
        padding: 30px 15px;
    }

    .GBanner-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .GBanner-subtitle {
        font-size: 16px;
    }

    .GBanner-domains {
        font-size: 15px;
        line-height: 1.5;
    }

    .GBanner-scope {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =================================================================================
   BASE WRAPPER
====================================================================================*/

.HpLnkWrapper {
    background: #E9E9E9;
    padding: 40px 20px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===============================
   MAIN CONTAINER
=================================*/

.HpLnkContainer {
    max-width: 1100px;
    margin: auto;
}

/* ===============================
   SECTION CARD
=================================*/

.HpLnkSection {
    background: #ffffff;
    padding: 22px 26px;
    margin-bottom: 28px;
    border-radius: 8px;
    border-left: 4px solid #b71c1c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* ===============================
   SECTION TITLES
=================================*/

.HpLnkTitle {
    font-size: 19px;
    font-weight: 600;
    color:  #111827;/*  #1c1c1c; */
    margin-bottom: 4px;
}

.HpLnkSubTitle {
    font-size: 14px;
    color:   #222827;/*  #5f6368;  */
     margin-bottom: 14px;
}

/* ===============================
   LINK GRID
=================================*/

.HpLnkGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 6px 28px;
}

/* ===============================
   LINK ITEMS
=================================*/

.HpLnkItem {
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.HpLnkItem:hover {
    background: #fbe9e7;
    color: #b71c1c;
    transform: translateX(3px);
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 768px) {
    .HpLnkGrid {
        grid-template-columns: 1fr;
    }
}


/* ==============================================================================
   GMiniBnr - Royal Gold Day Theme
================================================================================== */

.GMiniBnr {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 90px 20px;
    background:#E9E9E9; 
 /*   background: linear-gradient(
        135deg,
        #fbf9f4 0%,
        #f3efe6 50%,
        #ece6d8 100%
    );  */
    position: relative;
}

/* Book Cover Card */
.GMiniBnr-card {
    position: relative;
    max-width: 840px;
    width: 100%;
    padding: 70px 50px;
        background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ccd9ee 100%
    );
 /*   background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf7f1 100%
    );  */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 8 15px 16px rgba(29, 20, 20, 0.9);  
}

/* Outer Royal Gold Frame */ 
.GMiniBnr-card::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid;
    border-image: linear-gradient(
        45deg,
        #bfa046,
        #e6c76a,
        #a8842f
    ) 1;
    z-index: -1;
}  

/* Inner Subtle Gold Frame */ 
.GMiniBnr-card::after { 
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #555555;
    pointer-events: none;
}   /* rgba(191, 160, 70, 0.45); */

/* Artistic Bottom Royal Curve  */
.GMiniBnr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: radial-gradient(
        ellipse at center,
        rgba(191, 160, 70, 0.18) 0%,
        rgba(255, 255, 255, 0) 75%
    );
}  

/* Headings */

.GMiniBnr h1 {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2b2112;
    margin-bottom: 28px;
}

.GMiniBnr h2 {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #201a0b;
}

/* Responsive */

@media (max-width: 768px) {

    .GMiniBnr {
        padding: 40px 15px 80px 15px;
    }

    .GMiniBnr-card {
        padding: 45px 28px;
    }

    .GMiniBnr h1 {
        font-size: 1.6rem;
    }

    .GMiniBnr h2 {
        font-size: 1rem;
    }
}



