:root { --bs-primary: #a64dff !important; --bs-primary-rgb: 166, 77, 255 !important; --bs-body-bg: #f8f9fa; --bs-body-color: #212529; --bs-border-color: #dee2e6; --bs-body-bg-rgb: 248, 249, 250; --bs-body-color-rgb: 33, 37, 41; }
:root { --heading-font: Oswald, Arial Black, Arial, sans-serif; --body-font: "Open Sans", Arial, sans-serif; --bs-body-font-family: var(--body-font); }
body { font-family: var(--body-font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); }body { position: relative; z-index: 1; background-color: var(--bs-body-bg); background-attachment: fixed !important; background-size: 100% 100%; background-image: radial-gradient(circle at 4% 19%, rgba(166, 77, 255, 0.25) 0%, transparent 60%), radial-gradient(circle at 77% 89%, rgba(106, 26, 255, 0.2) 0%, transparent 60%); min-height: 100vh; } main, main > section { background-color: transparent !important; background: transparent !important; }:root {
    --bs-border-radius: 0.6rem;
    --bs-border-radius-sm: 0.4rem;
    --bs-border-radius-lg: 1rem;
    --bs-border-radius-xl: 1.5rem;
    --bs-border-radius-xxl: 2.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

h1 { font-size: 4.5rem; font-weight: 900; }
h2 { font-size: 3.0rem; font-weight: 800; }
h3 { font-size: 2.0rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

main {
    overflow: hidden;
}

main > section {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    main > section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

main > section > .container {
    position: relative;
    z-index: 2;
}

p {
    font-size: inherit;
    line-height: 1.6;
}

iframe {
    width: 100%;
    height: 30rem;
}

img {
    object-fit: cover;
    max-width: 100%;
    border-radius: var(--bs-border-radius);
}

i[data-feather] {
    background: none !important;
}

a {
    color: #6a1aff;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
    filter: brightness(85%);
}

.accent-keyword {
    color: #6a1aff !important;
    font-weight: bold;
}

.main-header, .main-footer {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 1rem 0;
    background-color: rgba(var(--bs-body-bg-rgb), 0.7);
    border-bottom: 1px solid var(--bs-border-color);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.main-header.scrolled {
    background-color: rgba(var(--bs-body-bg-rgb), 0.9);
    box-shadow: none;
}

.main-header .nav-link, .main-header .navbar-brand {
    color: var(--bs-body-color);
}

.main-footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: rgba(var(--bs-body-bg-rgb), 0.5);
    border-top: 1px solid var(--bs-border-color);
}

.main-footer a {
    color: var(--bs-primary);
}

.navbar-brand, .navbar-brand img, .logo {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
}

.card, .accordion-item, .list-group-item {
    background-color: rgba(var(--bs-body-bg-rgb), 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: var(--bs-border-radius);
    box-shadow: none !important;
    margin-bottom: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.card-gradient-1 { background-image: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05), transparent 50%); }
.card-gradient-2 { background-image: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.05), transparent 50%); }
.card-gradient-3 { background-image: linear-gradient(210deg, rgba(var(--bs-primary-rgb), 0.05), transparent 50%); }

.list-group-item {
    padding: 1.25rem 1.5rem;
}

blockquote {
    padding: 1.5rem;
    border-left: 5px solid var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: var(--bs-border-radius-sm);
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--bs-border-radius);
    transition: all 0.3s ease-in-out;
    box-shadow: none !important;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    color: #fff;
}

.form-control, .form-select {
    border-radius: var(--bs-border-radius);
    padding: 0.75rem 1.25rem;
    background-color: rgba(var(--bs-body-bg-rgb), 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: none !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: none !important;
    background-color: rgba(var(--bs-body-bg-rgb), 0.6);
}

::placeholder {
    color: var(--bs-body-color);
    opacity: 0.65;
}

.accordion-button {
    color: var(--bs-body-color);
}
.accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-item {
    background-color: transparent;
}

.card-folder {
    border: 2px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 1.5rem;
    padding-top: 3rem;
    position: relative;
    background-color: rgba(var(--bs-body-bg-rgb), 0.85);
}

.card-folder .card-title {
    position: absolute;
    top: -1px;
    left: 1.5rem;
    background-color: var(--bs-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 var(--bs-border-radius-sm) var(--bs-border-radius-sm);
    font-size: 1rem;
    font-family: var(--heading-font);
}

.card-bento {
    position: relative;
    overflow: hidden;
    border-radius: var(--bs-border-radius-xl);
    border: none;
    box-shadow: none !important;
}

.card-bento .card-img-overlay {
    bottom: 0;
    top: auto;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.card-bento .bento-content {
    background-color: rgba(var(--bs-body-bg-rgb), 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--bs-border-radius);
    width: 100%;
    border: 1px solid rgba(var(--bs-body-color-rgb), 0.1);
}

:root {
    --swiper-navigation-color: var(--bs-primary);
    --swiper-navigation-size: 18px;
    --swiper-pagination-color: var(--bs-primary);
}

.swiper-button-next, .swiper-button-prev {
    width: 44px;
    height: 44px;
    background-color: rgba(var(--bs-body-bg-rgb), 0.7);
    border: 1px solid rgba(var(--bs-body-color-rgb), 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(var(--bs-body-bg-rgb), 0.9);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(var(--bs-body-color-rgb), 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
    background-color: var(--bs-primary);
}

.mouse-track-element,
.interactive-element {
  transition: transform 0.5s ease-out;
  will-change: transform;
}
.rellax {
  will-change: transform;
}

@media (max-width: 767.98px) {
  .btn-primary, .btn-lg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    width: 100%;
  }
  img, .img-fluid {
    margin-bottom: 1.5rem !important;
  }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.75rem; }
}
h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h2 { font-size: 3.0rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
h3 { font-size: 2.0rem; font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }
h4 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.75rem; opacity: 0.9; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.0rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.0rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 0.9rem; }
}
.logo{
  margin: 0;
}
/* Widget Styles Here */
p, li, h1, h2, h3, h4, h5, h6, span, div, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.success-message, .error-message { margin-top: 1rem; padding: 1rem; border-radius: 0.5rem; text-align: center; display: none; color: #fff; }
.success-message { background-color: rgba(30, 130, 76, 0.8); } .error-message { background-color: rgba(192, 57, 43, 0.8); }
.iti { width: 100%; } .iti__tel-input { box-sizing: border-box; width: 100%; height: auto; padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; padding-left: 92px !important; line-height: 1.5; }
.iti__country-list { background-color: var(--bs-body-bg); border: 1px solid var(--bs-border-color); box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); color: var(--bs-body-color); }
.iti__country.iti__highlight { background-color: rgba(var(--bs-primary-rgb), 0.1); }
.iti__dial-code, .iti__country-name, .iti__selected-dial-code { color: var(--bs-body-color) !important; opacity: 0.9; } .accordion-button{display: block !important;}
h1,h2,h3{font-weight: bold !important;}
img{width: 100%; max-width: 30rem !important; max-height: 25rem; margin: 0 auto; display: block;}
.logo{max-width: 2.4rem !important; max-height: 2.4rem !important; width: 2.4rem !important; height: 2.4rem !important; margin: 0 !important;border-radius: 0; object-fit: contain;}
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg, 1rem);
  border: 1px solid rgba(166, 77, 255, 0.15);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  background: #1a1028;
}
.hero-video-wrap video {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  height: auto;
  margin: 0 !important;
  object-fit: cover;
  vertical-align: top;
}
.hero-video-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.hero-video-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.hero-video-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.brand-name{font-family: var(--heading-font); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.5px; color: var(--bs-body-color);}
.g-1, .gx-1,
.g-2, .gx-2,
.g-3, .gx-3,
.g-4, .gx-4,
.g-5, .gx-5{
    --bs-gutter-x: 0rem !important;
}
.tele-form{margin: 0 2rem;}
main{
  overflow: hidden;
}
footer .logo{margin: 0 !important;}
footer .navbar-brand{text-decoration: none;}
footer{margin: 3rem 0 0;}
.card{margin: 0 .5rem;}
.badge{
  white-space: inherit;
}


/* --- Geometric Shapes Styles --- */

.shape-container { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: -1; 
  pointer-events: none;
  overflow: hidden;
}
.shape-container img {
  position: absolute;
  will-change: transform;
  transition: transform 0.2s ease-out;
  z-index: -1;
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  opacity: 0.6;
}
section.mouse-track-container { 
  position: relative; 
  z-index: 1; 
}

@media (max-width: 768px) {
  .shape-container img {
    opacity: 0.15 !important;
    max-width: 120px !important;
    max-height: 120px !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
  .shape-container img:nth-of-type(odd) {
    left: -20px !important;
    top: 5% !important;
  }
  .shape-container img:nth-of-type(even) {
    right: -20px !important;
    bottom: 5% !important;
  }
  .shape-container img:nth-of-type(3n) {
    left: auto !important;
    right: -20px !important;
    top: 45% !important;
  }
  .shape-container img:nth-of-type(4n) {
    left: -20px !important;
    right: auto !important;
    top: 85% !important;
  }
}


/* --- Geometric Shapes Styles --- */

.shape-container { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: -1; 
  pointer-events: none;
}
.shape-container img {
  position: absolute;
  will-change: transform;
  transition: transform 0.2s ease-out;
  z-index: -1;
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  opacity: 0.8;
}
section.mouse-track-container { 
  position: relative; 
  z-index: 1; 
}


/* --- Enhanced Card Geometric Styles --- */

/* --- Enhanced Card Geometric Styles --- */
.card-numbered {
  position: relative;
  overflow: hidden;
}
.card-number {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--heading-font);
  color: rgba(var(--bs-body-color-rgb), 0.05); /* Very subtle, just a hint */
  z-index: 1;
  line-height: 1;
}
.card-numbered .card-body {
  position: relative;
  z-index: 2; /* Ensures text is on top of the number */
}
.card-horizontal {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-horizontal .row {
  flex-grow: 1;
}
.card-horizontal .img-fluid[data-ai-image-placeholder="true"],
.card-horizontal img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--bs-border-radius);
}
@media (max-width: 767.98px) {
  .card-horizontal .img-fluid[data-ai-image-placeholder="true"],
  .card-horizontal img {
    height: 200px;
    min-height: 200px;
  }
}

/* Fix for card margin in g- gutters */
.row[class*="row-cols-"] > [class*="col-"] .card {
  margin-bottom: 0;
}
