:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --secondary-dark: #db2777;
  --secondary-light: #f472b6;
  --accent: #10b981;
  --dark: #1e293b;
  --darker: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Unique from other roots */
  --primary-color: #4e73df;
  --secondary-color: #f8f9fc;
  --accent-color: #2e59d9;
  --text-color: #5a5c69;
  --border-color: #e3e6f0;
  --light-text: #64748b;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --border: #dee2e6;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

body {
  color: var(--text-color);
  background-color: #f8f9fc;
  position: relative;
}
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.domain-hero-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.domain-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.domain-hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.domain-hero-title {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.domain-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  position: relative;
  z-index: 1;
}



.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent), #0d9488);
}

.bg-light-custom {
    background-color: var(--light);
}

.bg-white-custom {
    background-color: var(--white);
}

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

.text-gradient-green {
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.btn {
    border-radius: var(--border-radius);
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border: none;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid rgba(30, 41, 59, 0.2);
}

.btn-outline-custom:hover {
    background-color: rgba(30, 41, 59, 0.05);
    color: var(--dark);
    border-color: rgba(30, 41, 59, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent), #0d9488);
    color: var(--white);
    border: none;
}

.btn-accent-custom:hover {
    background: linear-gradient(135deg, #0d9488, var(--accent));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    z-index: 1000;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark) !important;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 0 !important;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
} 

.fa.fa-bars {
    width: 24px;
    height: 17px;
    position: relative;
    transition: var(--transition);
}

.fa.fa-bars::before,
.fa.fa-bars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    left: 0;
    transition: var(--transition);
}

.fa.fa-bars::before {
    top: 0;
}

.fa.fa-bars::after {
    bottom: 0;
}

.fa.fa-bars span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars::before {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars::after {
    transform: translateY(-7.5px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars span {
    opacity: 0;
}


.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.terms-nav {
  position: sticky;
  top: 80px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  padding: 1.5rem; 
  margin-bottom:50px !important;
}

.terms-nav .term-nav-link {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration:none
}

.terms-nav .term-nav-link:hover {
  background-color: var(--secondary-color);
}

.terms-nav .term-nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.terms-section {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  padding: 2rem;
  margin-bottom: 2rem;
}

.terms-section h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.terms-section h3 {
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-section p {
  line-height: 1.7;
}

.terms-section ul {
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.75rem;
}

.icon-box {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  color: white;
}

.highlight-box {
  background-color: rgba(78, 115, 223, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 5px 5px 0;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(78, 115, 223, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.contact_row_right {
    height: 100%;
}

.contact_row_right_heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: block;
}

.contact_row_right_subheading {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    display: block;
    margin-bottom: 1.5rem;
}

.input {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.input:focus {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    color: var(--primary); /* focus hone par jo color chahiye */
}
.input{
    color: #c1c1c1;
}
.input::placeholder {
    color: var(--gray);
}

.contact_button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
}

.contact_button:hover {
    color:#fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.footer {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    padding: 5rem 0 0;
    position: relative;
    color: var(--light);
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--light);
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-newsletter .form-control {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-newsletter .form-control::placeholder {
    color: var(--gray);
}

textarea{
    resize:none;
}
.footer-newsletter .btn {
    width: 100%;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f0ff; /* light blue bg */
    color: #007bff; /* Bootstrap primary blue */
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:nth-child(1) { color: #FF0000; }  
.footer-social a:nth-child(2) { color: #0077b5; }  
.footer-social a:nth-child(3) { color: #E1306C; }  
.footer-social a:nth-child(4) { color: #1877F2; }  

.footer-social a:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

@media (max-width: 991.98px) {
    .terms-nav {
        position: relative;
        margin-bottom: 2rem;
        margin-top:-80px !important;
    }
    .page-container{
        margin-top:20px;
        padding:10px !important;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
}
@media (max-width: 575px) {
    .navbar-toggler{
        margin-right:20px !important;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
}
@media (max-width: 500px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}
@media (max-width: 350px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}
@media (max-width: 300px) {
    .navbar-brand {
        font-size: 1rem;
    }
}
