/* =================================================================== 
 *
 *  NumericNetworks v1.0 Base Stylesheet
 *  06-10-2018
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  # imports 
 *  # normalize  
 *  # basic/base setup styles
 *    ## Media
 *    ## Typography resets 
 *    ## links
 *    ## inputs
 *  # grid
 *    ## medium size devices
 *    ## tablets
 *    ## mobile devices
 *    ## small mobile devices
 *  # block grids
 *    ## medium size devices
 *    ## tablets
 *    ## mobile devices
 *  # MISC
 *
 * =================================================================== */


/* ===================================================================
 * # imports 
 *
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Nunito+Sans:300,400,400i,600,600i,700,700i");
@import url("micons/micons.css");
@import url("font-awesome/css/fontawesome-all.css");


/* ===================================================================
 * # normalize
 * normalize.css v5.0.0 | MIT License |
 * github.com/necolas/normalize.css
 *
 * ------------------------------------------------------------------- */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


/* ===================================================================
 * # basic/base setup styles
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-weight: normal;
  line-height: 1;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
}

body,
input,
button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------------- 
 * ## Media
 * ------------------------------------------------------------------- */
img,
video {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------- 
 * ## Typography resets 
 * ------------------------------------------------------------------- */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: common-ligatures;
  -moz-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
}

li {
  display: block;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  text-decoration: none;
  line-height: inherit;
}

a img {
  border: none;
}

/* ------------------------------------------------------------------- 
 * ## inputs
 * ------------------------------------------------------------------- */
fieldset {
  margin: 0;
  padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}


/* ===================================================================
 * # grid
 *
 * ------------------------------------------------------------------- */
.row {
  width: 89%;
  max-width: 1200px;
  margin: 0 auto;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row .row {
  width: auto;
  max-width: none;
  margin-left: -20px;
  margin-right: -20px;
}

/* column blocks
 * -------------------------------------- */
[class*="col-"] {
  float: left;
  padding: 0 20px;
}

[class*="col-"] + [class*="col-"].end {
  float: right;
}

.collapse > [class*="col-"],
[class*="col-"].collapse {
  padding: 0;
}

/* column width classes 
 * -------------------------------------- */
.col-one {
  width: 8.33333%;
}

.col-two,
.col-1-6 {
  width: 16.66667%;
}

.col-three,
.col-1-4 {
  width: 25%;
}

.col-four,
.col-1-3 {
  width: 33.33333%;
}

.col-five {
  width: 41.66667%;
}

.col-six,
.col-1-2 {
  width: 50%;
}

.col-seven {
  width: 58.33333%;
}

.col-eight,
.col-2-3 {
  width: 66.66667%;
}

.col-nine,
.col-3-4 {
  width: 75%;
}

.col-ten,
.col-5-6 {
  width: 83.33333%;
}

.col-eleven {
  width: 91.66667%;
}

.col-twelve,
.col-full {
  width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## medium size devices
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
  .row .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  [class*="col-"] {
    padding: 0 15px;
  }

  .md-two,
  .md-1-6 {
    width: 16.66667%;
  }

  .md-one {
    width: 8.33333%;
  }

  .md-three,
  .md-1-4 {
    width: 25%;
  }

  .md-four,
  .md-1-3 {
    width: 33.33333%;
  }

  .md-five {
    width: 41.66667%;
  }

  .md-six,
  .md-1-2 {
    width: 50%;
  }

  .md-seven {
    width: 58.33333%;
  }

  .md-eight,
  .md-2-3 {
    width: 66.66667%;
  }

  .md-nine,
  .md-3-4 {
    width: 75%;
  }

  .md-ten,
  .md-5-6 {
    width: 83.33333%;
  }

  .md-eleven {
    width: 91.66667%;
  }

  .md-twelve,
  .md-full {
    width: 100%;
  }

}

/* ------------------------------------------------------------------- 
 * ## tablets
 * ------------------------------------------------------------------- */
@media only screen and (max-width:800px) {
  .row {
    width: 90%;
  }

  .tab-1-4 {
    width: 25%;
  }

  .tab-1-3 {
    width: 33.33333%;
  }

  .tab-1-2 {
    width: 50%;
  }

  .tab-2-3 {
    width: 66.66667%;
  }

  .tab-3-4 {
    width: 75%;
  }

  .tab-full {
    width: 100%;
  }

  .hide-on-tablet {
    display: none;
  }

}

/* ------------------------------------------------------------------- 
 * ## mobile devices
 * ------------------------------------------------------------------- */
@media only screen and (max-width:600px) {
  .row {
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
  }

  .row .row {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 0;
    padding-right: 0;
  }

  [class*="col-"] {
    padding: 0 10px;
  }

  .mob-1-4 {
    width: 25%;
  }

  .mob-1-3 {
    width: 33.33333%;
  }

  .mob-1-2 {
    width: 50%;
  }

  .mob-2-3 {
    width: 66.66667%;
  }

  .mob-3-4 {
    width: 75%;
  }

  .mob-full {
    width: 100%;
  }

  .hide-on-mobile {
    display: none;
  }

}

/* ------------------------------------------------------------------- 
 * ## small mobile devices
 * ------------------------------------------------------------------- */

/* stack columns on small mobile devices
 * ------------------------------------------------------------------- */
@media only screen and (max-width:400px) {
  .row .row {
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"]:not(.col-block) {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  [class*="col-"] + [class*="col-"].end {
    float: none;
  }

  .stack .col-block {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }

}


/* ===================================================================
 * # block grids
 * ------------------------------------------------------------------- */

/*   Equally-sized columns define at row level
 * ------------------------------------------------------------------- */
[class*="block-"]:after {
  content: "";
  display: table;
  clear: both;
}

.block-1-6 .col-block {
  width: 16.66667%;
}

.block-1-5 .col-block {
  width: 20%;
}

.block-1-4 .col-block {
  width: 25%;
}

.block-1-3 .col-block {
  width: 33.33333%;
}

.block-1-2 .col-block {
  width: 50%;
}

/**
 * Clearing for block grid columns. Allow columns with 
 * different heights to align properly.
 */
.block-1-6 .col-block:nth-child(6n+1),
.block-1-5 .col-block:nth-child(5n+1),
.block-1-4 .col-block:nth-child(4n+1),
.block-1-3 .col-block:nth-child(3n+1),
.block-1-2 .col-block:nth-child(2n+1) {
  clear: both;
}

/* ------------------------------------------------------------------- 
 * ## medium size devices
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
  .block-m-1-6 .col-block {
    width: 16.66667%;
  }

  .block-m-1-5 .col-block {
    width: 20%;
  }

  .block-m-1-4 .col-block {
    width: 25%;
  }

  .block-m-1-3 .col-block {
    width: 33.33333%;
  }

  .block-m-1-2 .col-block {
    width: 50%;
  }

  .block-m-full .col-block {
    width: 100%;
    clear: both;
  }

  [class*="block-m-"] .col-block:nth-child(n) {
    clear: none;
  }

  .block-m-1-6 .col-block:nth-child(6n+1),
  .block-m-1-5 .col-block:nth-child(5n+1),
  .block-m-1-4 .col-block:nth-child(4n+1),
  .block-m-1-3 .col-block:nth-child(3n+1),
  .block-m-1-2 .col-block:nth-child(2n+1) {
    clear: both;
  }

}

/* ------------------------------------------------------------------- 
 * ## tablets
 * ------------------------------------------------------------------- */
@media only screen and (max-width:800px) {
  .block-tab-1-6 .col-block {
    width: 16.66667%;
  }

  .block-tab-1-5 .col-block {
    width: 20%;
  }

  .block-tab-1-4 .col-block {
    width: 25%;
  }

  .block-tab-1-3 .col-block {
    width: 33.33333%;
  }

  .block-tab-1-2 .col-block {
    width: 50%;
  }

  .block-tab-full .col-block {
    width: 100%;
    clear: both;
  }

  [class*="block-tab-"] .col-block:nth-child(n) {
    clear: none;
  }

  .block-tab-1-6 .col-block:nth-child(6n+1),
  .block-tab-1-5 .col-block:nth-child(5n+1),
  .block-tab-1-4 .col-block:nth-child(4n+1),
  .block-tab-1-3 .col-block:nth-child(3n+1),
  .block-tab-1-2 .col-block:nth-child(2n+1) {
    clear: both;
  }

}

/* ------------------------------------------------------------------- 
 * ## mobile devices
 * ------------------------------------------------------------------- */
@media only screen and (max-width:600px) {
  .block-mob-1-6 .col-block {
    width: 16.66667%;
  }

  .block-mob-1-5 .col-block {
    width: 20%;
  }

  .block-mob-1-4 .col-block {
    width: 25%;
  }

  .block-mob-1-3 .col-block {
    width: 33.33333%;
  }

  .block-mob-1-2 .col-block {
    width: 50%;
  }

  .block-mob-full .col-block {
    width: 100%;
    clear: both;
  }

  [class*="block-mob-"] .col-block:nth-child(n) {
    clear: none;
  }

  .block-mob-1-6 .col-block:nth-child(6n+1),
  .block-mob-1-5 .col-block:nth-child(5n+1),
  .block-mob-1-4 .col-block:nth-child(4n+1),
  .block-mob-1-3 .col-block:nth-child(3n+1),
  .block-mob-1-2 .col-block:nth-child(2n+1) {
    clear: both;
  }

}


/* ===================================================================
 * # MISC
 *
 * ------------------------------------------------------------------- */
.group:after {
  content: "";
  display: table;
  clear: both;
}

/* Misc Helper Styles
 * -------------------------------------- */
.is-hidden {
  display: none;
}

.is-invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.overflow-hidden {
  overflow: hidden;
}

.remove-bottom {
  margin-bottom: 0;
}

.half-bottom {
  margin-bottom: 1.5rem !important;
}

.add-bottom {
  margin-bottom: 3rem !important;
}

.no-border {
  border: none;
}

.full-width {
  width: 100%;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Add this CSS */
.word-carousel {
    display: inline-block;
    height: 1em; /* Match your line-height */
    overflow: hidden;
    position: relative;
    vertical-align: top;
    width: 200px; /* Adjust based on your longest word */
    top: 10px;
}

.animated-text {
    position: absolute;
    animation: wordCycle 5s infinite;
    line-height: 1em;
    left: 0px
}

.animated-text span {
    display: block;
    height: 1em;
}

@keyframes wordCycle {
    0%, 25% { top: 0; }
    33.33%, 58.33% { top: -1em; }
    66.66%, 91.66% { top: -2em; }
    100% { top: 0; }
}

    .lead {
      font-size: 1.25rem;
    }
    .list-unstyled {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* Custom Container */
    .custom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      z-index:10;
    }

    /* Custom Grid System (mobile-first) */
    .custom-row {
      display: flex;
      flex-wrap: wrap;
      margin: -15px;
    }
    /* Default: 100% width for mobile */
    .custom-col {
      padding: 15px;
      flex: 0 0 100%;
      z-index:10;
    }
    /* Medium screens: 50% width */
    @media (min-width: 768px) {
      .custom-col-md-6 {
        flex: 0 0 50%;
      }
    }
    /* Large screens: 33.333% width */
    @media (min-width: 992px) {
      .custom-col-lg-4 {
        flex: 0 0 33.3333%;
      }
    }

    /* Custom Card */
    .custom-card {
      background: radial-gradient(circle, rgb(20 0 40 /.5) 10%, #000 80%);;
      border: .1px solid #ffffff63;
      border-image-slice: 1;
      border-radius: 10px;
      transition: transform 0.3s ease;
      height: 100%;
      padding: 1rem;
    }
    .custom-card:hover {
      transform: translateY(-10px);
    }
    .custom-card .custom-card-title {
      margin-bottom: 1rem;
    }
    /* Card body wrapper (optional, for better structure) */
    .custom-card-body {
      padding: 0;
    }

    /* Service Icon */
    .service-icon {
      font-size: 2.5rem;
      background: rgba(255, 255, 255, 0.1);
      padding: 1rem;
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      display: inline-block;
    }

    /* Highlighted Card */
    .custom-card:hover {
      background: linear-gradient(1deg, #121212, #ffffff1c);
      color: #fff;
    }

    /* Custom Buttons */
    .custom-btn {
      background: #374151;
      color: white;
      border-radius: 2rem;
      padding: 0.5rem 1.5rem;
      display: inline-block;
    }
    .custom-btn:hover {
      background: #1F2937;
      color: white;
    }
    .custom-btn-dark {
      background: #000;
      border: none;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      display: inline-block;
      color: #ffffff;
    }
    .custom-btn-dark:hover {
      background: #333;
    }
    .mb-5{
        margin-bottom: 5rem;
    }

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}
@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}
.info-card {
    background-color: #1111119e;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    border:0.1px solid #ffffff2e;
}
.info-card:hover{
      background: linear-gradient(1deg, #121212, #ffffff1c);
      color: #fff;
transform: translateY(-10px);
}
.icon-style {
    color: #e91e63;
    margin-right: 10px;
}

        /* General Section Styling */
.testimonial-section {
    padding: 3rem 0;
    animation-delay: 0.1s;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Header Styling */
.testimonial-title {
    color: #06BBCC;
    font-family: 'Pacifico', cursive;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-heading {
    margin-bottom: 3rem;
    color: black;
}

/* Swiper Wrapper */
.testimonial-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
    background: transparent;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 2em;
    color: #06BBCC;
    margin-bottom: 0.75rem;
    display: block;
}

.testimonial-text {
    margin-bottom: 1rem;
    color: grey;
}

/* User Info */
.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    margin-left: 0.75rem;
}

.testimonial-name {
    margin-bottom: 0.25rem;
    color: black;
}

.testimonial-profession {
    color: #6c757d;
}

/* Swiper Navigation and Pagination */
.swiper-button-next,
.swiper-button-prev {
    color: #06BBCC;
}

.swiper-pagination-bullet-active {
    background-color: #06BBCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-heading {
        font-size: 2rem;
    }

    .testimonial-card {
        width: 90%;
    }
}
.fa-quote-left:before{
    color: #ea272d;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    color: #ea272d;
}
.swiper-pagination-bullet-active{
    color: #ea272d;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    color: #ea272d;
}

    #custom-footer {
        background: var(--bg-color);
        color: var(--text-color);
        padding: var(--footer-padding) 0;
    }

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

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-widget {
        flex: 1;
        min-width: 200px;
    }

    .footer-widget h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
        margin-top: 0px !important;
    }

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

    .footer-widget ul li {
        margin-bottom: 5px;
    }

    .footer-widget ul li a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-widget ul li a:hover {
        color: var(--primary-color);
    }

    .highlight {
        color: var(--primary-color);
    }

    .footer-copyright {
        text-align: center;
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }
.contact-container {
    display: flex;
    align-items: center;
    max-width: 900px;
    width: 100%;
    flex-wrap: wrap;
}
.contact-text-section {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.contact-heading {
    color: #ea272d;
    font-size: 18px;
}
.contact-title {
    font-size: 36px;
    margin: 10px 0;
}
.contact-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}
.contact-info {
    font-size: 18px;
    color:#000 !important;
}
.contact-info a {
    color: #6A5ACD;
    text-decoration: none;
}
.contact-icon {
    margin-right: 10px;
}
.contact-illustration {
    flex: 1;
    text-align: center;
    min-width: 300px;
}
.contact-illustration img {
    max-width: 100%;
    height: 330px;
}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-text-section, .contact-illustration {
        width: 100%;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-description {
        font-size: 14px;
    }
}
#contact{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg,#FFECE5FF,#FAE6FFFF);
    border-radius:55px;
}
span.highlight{
    color: #ea272d;
}
#custom-footer {
    background-color: #000;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    padding: 4rem 2rem;
    position: relative;
}

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

/* Grid Layout */
.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Company Info */
.company-info .tagline {
    color: var(--teal);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    margin-top: -25px
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.aws-logo {
    height: 20px;
    width: auto;
}

.awards {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Quick Links */
.quick-links {
    display: grid;
    gap: 1.5rem;
}

.link-group h4 {
    color: var(--teal);
    margin-bottom: 0.75rem;
    margin-top: 0px !important
}

.link-group a:hover {
    color: var(--teal);
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Contact & Support */
.offices li, .contacts li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-support {
    color: var(--red);
    margin-top: 1.5rem;
}

/* Newsletter & Social */
.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
}

.cta-button {
    background: var(--teal);
    color: var(--navy);
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}
.social-heading {
    text-align: center;
}

.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--teal);
}

/* Lower Footer */
.lower-footer {
    padding-top: 2rem;
    text-align: center;
}

.client-logos .logos-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    height: 35px;
}

.legal-links {
    margin: 1rem 0;
    opacity: 0.7;
}

/* Hidden Gems */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--teal);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.live-chat {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .client-logos {
        display: none;
    }

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

    .quick-links {
        grid-template-columns: 1fr 1fr;
    }
}
.text-align-left{
    text-align: left;
}
.brand-logo h2{
margin-top: 0px !important
}
.footer-widget.contact-support {
    text-align: left;
}
.li_sub_menu{
    padding-left: 4rem !important;
    font-size: 1.5rem;
}
.sub_menu{
    color: #777777
}
.header-nav_sub_list {
    margin-bottom: 0px !important;
    font-size: 14px;
}
.header-nav_sub_list a {
    font-size: 14px; /* Ensure links inside submenu are also adjusted */
    padding: 5px 10px; /* Add some spacing for better readability */
}
.font_weight_100 {
    font-weight: 100;
}
