
/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-text-dark: #090703;
  --color-text-primary: #141414;
  --color-text-secondary: #4a5565;
  --color-text-medium: #6a6a6a;
  --color-text-tertiary: #364153;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark-bg: #141414;
  --color-dark-blue: #101828;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-gold: #6A6A6A;
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  /* Layout - Bootstrap compatible */
  --bs-gutter-x: 66.5px;
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable; /* Reserve space for scrollbar to prevent layout shift */
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: #f5f5f5;
  overflow-x: hidden;
}

  body.menu-open {
    overflow: hidden;
  }
 

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* 4 Dots Decoration */
.section-dots {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 17px;
}

  .section-dots circle {
    opacity: 0;
    transform-origin: center;
  }



/* Bootstrap Container Override */
.container {
  max-width: 1440px;
  padding-left: 43px;
  padding-right: 43px;
  position: relative;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  html {
    scrollbar-gutter: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===================================
   Premium Custom Cursor - TWO Circles
   =================================== */

/* Hide default cursor */
body,
a,
button,
input,
textarea,
select {
  cursor: none !important;
}

/* Main cursor dot */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647; /* Maximum z-index to ensure it stays on top even with inspector */
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* NOTE: will-change: transform is intentionally omitted.
     Pre-promoting the element to its own compositor layer causes mix-blend-mode
     to blend against a transparent/black layer instead of the page — making the
     cursor invisible on many GPU/browser combinations. GSAP manages GPU promotion
     during active animation without this hint. */
  mix-blend-mode: difference;
  /* Fallback shadow so the cursor stays visible even if blend-mode is disabled */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

/* Outer ring */
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483646; /* Just below main cursor */
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* See note on .custom-cursor — will-change omitted to avoid compositor conflict */
  mix-blend-mode: difference;
  opacity: 1;
}

/* Hover state */
.custom-cursor.hover {
  width: 18px;
  height: 18px;
}

.custom-cursor-ring.hover {
  width: 36px;
  height: 36px;
}

/* Click animation */
.custom-cursor.clicked {
  transform: translate(-50%, -50%) scale(0.8);
}

.custom-cursor-ring.clicked {
  transform: translate(-50%, -50%) scale(1.3);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }

  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto !important;
  }
}

/* Hide custom cursor on small screens */
@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }

  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto !important;
  }
}


 

.iti__tel-input {
  padding-left: 100px !important; 
}