:root {
  --primary: #0066cc;
  --primary-dark: #004b99;
  --primary-light: #3399ff;
  --secondary: #00bda6;
  --slate-50: #f6ddc5;
  --slate-100: #f1f5f9;
  --slate-200: #f8fafc;
  --slate-300: #345377;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

/* NAVBAR - PREMIUM GLASSMORPHISM */
#main-nav.navbar-default {
  background: rgba(101, 200, 176, 0.66) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  transition: all 0.4s ease;
}

#main-nav .logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  text-decoration: none;
}

#main-nav .logo i {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

#main-nav.navbar-default .navbar-nav > li > a {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--slate-300) !important;
  padding: 15px 20px !important;
  transition: all 0.3s ease !important;
}

#main-nav.navbar-default .navbar-nav > li > a:hover {
  color: var(--primary) !important;
}

#main-nav.navbar-default .navbar-nav > li.active > a {
  color: var(--white) !important;
  background: transparent !important;
}

#main-nav.navbar-default .navbar-nav > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.container {
  max-width: 95% !important;   /* makes layout wider */
}
@media (max-width: 991px) {
  #main-nav.navbar-default .navbar-nav > li > a {
    padding: 10px 20px !important;
  }
}

.btn {
  padding: 12px 24px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 20px -10px rgba(0, 102, 204, 0.5);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(0, 102, 204, 0.6);
  filter: brightness(1.1);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--secondary), #2563eb);
  color: var(--white);
  box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.6);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.btn.outline:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-1px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 700px;
  margin: 24px auto;
  color: #94a3b8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* PILLS */
.pill-group {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.pill.blue {
  color: var(--primary);
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.2);
}

/* SECTION HEADERS */
.section-header {
  
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 18px;
   color: var(--white);
  line-height: 1.6;
}



/* CARDS & GLASSMORPHISM */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  border-color: var(--primary-light);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}

/* API TESTER IMPROVEMENTS */
.api-container {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.method-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.method-btn {
  padding: 10px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--slate-600);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.method-btn:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.method-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.url-input-group {
  display: flex;
  gap: 15px;
  background: var(--slate-50);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  margin-bottom: 30px;
  width: 100%;
}

.url-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--slate-900);
  padding: 10px 15px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  min-width: 0;
}

.url-input:focus {
  outline: none;
}

.response-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 25px;
  min-height: 250px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  color: var(--slate-800);
}

/* GEO TOOLS ENHANCEMENTS */
#geo {
  background-image: radial-gradient(circle at 100% 0%, rgba(159, 246, 171, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

.features-list > div {
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.features-list > div:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  color: var(--primary) !important;
}

/* FOOTER */
#footer {
  background: var(--slate-900);
  padding: 40px 0 40px;
  color: var(--white);
  position: relative;
}

#footer .social-icons {
  display: flex;
  gap: 10px;
}

#footer .social-icons a {
  width: 45px;
  height: 45px;
  background: var(--slate-800);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  border: 1px solid var(--slate-700);
}

#footer .social-icons a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

/* FOOTER ENHANCEMENTS */
#footer {
  background: var(--slate-900);
  padding: 10px 0;
  border-top: 1px solid var(--slate-800);
  color: var(--slate-400);
}

#footer .logo {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#footer .social-icons {
  display: flex;
  gap: 12px;
}

#footer .social-icons a {
  width: 40px;
  height: 40px;
  background: var(--slate-800);
  color: var(--slate-400);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

#footer .social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* RESPONSIVE TRIMS */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 32px;
  }
  
  .hero-showcase-section {
    height: 400px;
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .glass-card {
    margin-bottom: 30px;
  }
  
  #main-nav.navbar-default .navbar-collapse {
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
  }
}

/* MISC POLISH */
.carousel-indicators li {
  border-color: var(--primary) !important;
}

.carousel-indicators .active {
  background-color: var(--primary) !important;
}

#license-result {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--slate-900);
}

::-webkit-scrollbar-thumb {
  background: var(--slate-700);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* GEO MODULES GRID */
.geo-module-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.geo-module-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.geo-module-card .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 102, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.geo-module-card .icon-wrapper i {
  font-size: 24px;
  color: var(--primary);
}

.geo-module-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.geo-module-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.geo-module-card .module-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--slate-100);
  padding-top: 15px;
}

.geo-module-card .module-features li {
  font-size: 13px;
  color: var(--slate-700);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.geo-module-card .module-features li i {
  color: var(--primary);
  font-size: 11px;
  margin-top: 3px;
}

/* API PRODUCT SUITE CARDS */
.product-suite-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-suite-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.25);
  border: 1px solid rgba(0, 102, 204, 0.3);
}

.product-suite-card .card-image-wrapper {
  height: 180px;
  width: 100%;
  overflow: hidden;
  background: var(--slate-900);
}

.product-suite-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-suite-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.product-suite-card .card-body-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  
}

.product-suite-card .card-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  display: block;
}

.product-suite-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  
}

.product-suite-card .card-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-suite-card .card-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-suite-card .view-details-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-800);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.product-suite-card .view-details-link i {
  transition: transform 0.3s ease;
}

.product-suite-card:hover .view-details-link {
  color: var(--primary);
}

.product-suite-card:hover .view-details-link i {
  transform: translateX(4px);
}

/* DARK THEME FORMS */
.dark-form-section {
  padding: 100px 0;
  background: rgba(171, 222, 239, 0.85);
  color: var(--white);
  border-top: 1px solid #1e293b;
}

.dark-form-section.alt-bg {
  background: #c6cdeb;
}

.dark-form-section .section-header h2 {
  color: var(--white);
}

.dark-form-section .section-header p {
  color: var(--slate-400);
}

.dark-form-section address {
  color: var(--slate-300);
}

.dark-form-section address strong {
  color: var(--white) !important;
}

/* ==========================================================================
   GET YOUR LICENSE FORM STYLING
   ========================================================================== */
#request-license .dark-glass-card {
  background: rgba(255, 232, 207, 0.79);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#request-license .dark-glass-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.1);
}

#request-license .dark-glass-card label {
  color: var(--slate-300) !important;
}

/* Styling for "Get Your License" inputs */
#license-request-form .form-control {
  background: rgba(228, 189, 153, 0.79) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  height: 50px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

#license-request-form .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(88, 175, 237, 0.25) !important;
  background: rgba(228, 189, 153, 0.79) !important; /* Keep the default warm peach background on click */
  outline: none;
}

#license-request-form select.form-control option {
  background: #0f172a;
  color: var(--white);
}

/* ==========================================================================
   CONTACT US FORM STYLING (Blue Slate Theme)
   ========================================================================== */
#contact .dark-glass-card {
  background: rgba(129, 169, 234, 0.85); /* Deep slate-blue glass background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

#contact .dark-glass-card:hover {
  border-color: rgba(0, 102, 204, 0.4);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
}

#contact .dark-glass-card label {
  color: var(--slate-200) !important; /* Lighter label text for deep background contrast */
}

/* Styling for "Contact Us" inputs */
#main-contact-form .form-control {
  background: rgba(248, 242, 185, 0.6) !important; /* Cool dark-slate input background */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
  height: 50px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

#main-contact-form textarea.form-control {
  height: auto;
}

#main-contact-form .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(51, 153, 255, 0.3) !important;
  background: rgba(248, 242, 185, 0.6) !important; /* Keep the default background color on click */
  outline: none;
}

.dark-glass-card #payment-info {
  color: var(--slate-400) !important;
}

.dark-glass-card #license-result {
  background: rgba(0, 102, 204, 0.08) !important;
  border: 1px solid rgba(0, 102, 204, 0.3) !important;
  border-left: 5px solid var(--primary) !important;
}

.dark-glass-card #license-result h4 {
  color: var(--white) !important;
}

.dark-glass-card #license-result div {
  color: var(--slate-300) !important;
}

.dark-glass-card #license-result strong {
  color: var(--white) !important;
}

.dark-glass-card #license-result span#res-product,
.dark-glass-card #license-result span#res-expiry {
  color: var(--white) !important;
}

.dark-glass-card #license-result div div {
  background: rgba(15, 23, 42, 0.5) !important;
  border: 1px dashed rgba(255, 255, 255, 0.2) !important;
}

/* HERO REDESIGN */
.hero-showcase-section {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%) !important;
  padding: 100px 0 100px 0 !important;
  position: relative;
  overflow: hidden;
  color: var(--white);
  margin-top: 0 !important;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 189, 166, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-text-content {
  padding-right: 20px;
  position: relative;
  z-index: 2;
  
}


.hero-text-content .hero-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 999px;
}

.hero-text-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.hero-text-content h1 span {
  background: linear-gradient(135deg, #fff 0%, #d0f0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 4px rgba(238, 75, 75, 0.15));
}


.hero-text-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
 
 
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Mock browser/app frame showcase */
.hero-showcase-frame {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(0, 102, 204, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 2;
  height: 500px; /* increase overall right side size */
  width: 720px;
}

.hero-showcase-frame:hover {
   transform: scale(1.02);
  border-color: rgba(0, 189, 166, 0.3);
}

.frame-header {
  background: rgba(15, 23, 42, 0.8);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.frame-dot.yellow { background: #f59e0b; }
.frame-dot.green { background: #10b981; }

.frame-address-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 11px;
  color: var(--slate-400);
  font-family: monospace;
  text-align: center;
  margin-left: 20px;
}

.frame-body {
  padding: 0;
  position: relative;
  background: #0b1329;
  height: auto;
  overflow: hidden;
}

.frame-body .carousel-inner,
.frame-body .item,
.frame-body .carousel-image-container {
  height: 100%;
}

.frame-body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .hero-showcase-section {
    padding: 100px 0 60px 0 !important;
    gap: 30px;
  }
  .hero-text-content h1 {
    font-size: 38px;
  }
  .hero-showcase-frame {
    transform: none !important;
    margin-top: 50px;
  }
}



