
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Global Reset - Remove default margins, padding, and apply base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    cursor: pointer;
}
body{
    overflow-x: hidden;
    padding-top: 85px;
}

/* CSS Variables for consistent theming */
:root {
    --main-color: #f4b704;
    --color-white: #fff;
    --color-black: #000;
}

/* ============================================
   GLOBAL & UTILITY STYLES
   ============================================ */

/* Image utilities - object-fit for responsive images */
.object-fit,
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Embedded content styling */
iframe {
    display: block;
}

/* Paragraph styling */
p {
    font-weight: 300;
    letter-spacing: 1.3px;
}
/* Image styling */
img {
    width: 100%;
}

.dropdown-toggle::after{
    display: none;
} 
/* Link reset */
a {
    text-decoration: none;
}

/* List reset */
ul {
    padding-left: 0;
}

/* Section spacing */
.section-space {
    padding: 100px 0;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

/* Extra large heading - 110px (desktop) to 32px (mobile) */
.fs-100 {
    font-size: clamp(32px, 8vw, 110px);
    text-align: center;
}

/* Main section heading - 70px down to 28px */
.section-heading {
       font-size: clamp(35px, 5vw, 90px);
    font-weight: 300;
}
.service-page .section-heading {
       font-size: clamp(28px, 3.5vw, 90px);
    font-weight: 300;
 
}

.service-page .section-heading1 {
    font-size: clamp(26px,4vw, 90px);
    font-weight: 200;
}

/* Large section heading - 90px down to 36px */
.section-heading1 {
    font-size: clamp(36px, 9vw, 90px);
    font-weight: 200;
}

/* Section paragraph - responsive sizing */
.section-para {
    font-size: clamp(16px, 1.6vw, 25px);
    font-weight: 200;
   
}

/* Section heading subtitle paragraph */
.section-heading-para {
    font-size: clamp(14px, 2.5vw, 20px);
    padding: 10px 0 20px 0;
}

/* ============================================
   CONTAINER LAYOUTS
   ============================================ */

/* Responsive container with max-width breakpoints */
.custom-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
@media (min-width: 576px) {
    .custom-container,
    .container {
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    .custom-container,
    .container {
        max-width: 700px;
    }
}
@media (min-width: 992px) {
    .custom-container,
    .container {
        max-width: 900px;
    }
}
@media (min-width: 1200px) {
    .custom-container,
    .container {
        max-width: 1100px;
    }
}


@media (min-width: 1400px) {
    .custom-container,
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1600px) {
    .custom-container,
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1280px) {
  
     .section-space {
    padding: 80px 0;
  }
}

@media (max-width: 992px) {
  
     .section-space {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
   
     .section-space {
    padding: 40px 0;
  }
}

/* @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
} */


/* ============================================
   BUTTON STYLES
   ============================================ */

/* Base button style */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: var(--color-white);
}

/* Button color themes */
.black-btn {
    --btn-color: #000000;
    --btn-border-color: #f4b704;
    --text-color: #ffffff;
    --key-color: #ffffff;
}

.white-btn {
    --btn-color: #ffffff;
     --btn-border-color: #f4b704;
    --text-color: #000000;
    --key-color: #000000;
}

/* Transparent button with icon support */
.btn-transparent {
    background-color: transparent;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--btn-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    position: relative;
    letter-spacing: 1px;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 400;
}

/* Main button with border and hover effects */
.btn-main {
    background-color: transparent;
    border: 1px solid var(--btn-color);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--btn-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    padding: 10px 20px;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    font-size: clamp(14px, 2.2vw, 18px);
    font-weight: 300;
    min-width: 180px;
    text-decoration: none;

}
.btn-main .text, .btn-main svg {
    position: relative;
    z-index: 2;
}

.btn-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--btn-color);
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: right;
}


/* Icon styling for main and transparent buttons */
.btn-main svg,
.btn-transparent i {
    margin-left: 10px;
    transition: transform 0.6s ease-in-out;
    position: relative;
    fill: var(--btn-color);
}

.btn-transparent:hover i {
    transform: translateX(5px);
}

.btn-main:hover svg {
    transform: translateX(10px);
    fill: var(--text-color);
}
.btn-main:hover::after{
    transform: scaleX(1);
    transform-origin: left;
} 
.btn-main:hover {
    /* background: var(--btn-color); */
    color: var(--text-color);
}

.btn-main .text {
    display: inline-block;
}

/* btn-animation button with decorative top and bottom keys */
.btn-animation {
    background-color: transparent;
    border: 1px solid var(--btn-border-color);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--btn-color);
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: clamp(11px, 1.5vw, 13px);
}

.btn-animation .text {
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--btn-color);
}

/* Decorative top border element */
.btn-animation .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: var(--key-color);
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

/* Decorative bottom border element */
.btn-animation .bottom-key-2 {
    height: 2px;
    width: 1.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: var(--key-color);
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

/* btn-animation button hover state */
.btn-animation:hover {
    color: white;
    background: black;
}

.btn-animation:hover .text {
    color: white;
}

.btn-animation:hover .top-key {
    left: -2px;
    width: 0;
}

.btn-animation:hover .bottom-key-2 {
    right: 0;
    width: 0;
}


/* ============================================
   FLEXBOX UTILITIES
   ============================================ */

/* Center content both horizontally and vertically */
.flex-center-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Space between items with vertical centering */
.flex-between-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Content aligned to start with vertical centering */
.flex-center-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Content aligned to end with vertical centering */
.flex-center-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ============================================
   FONT WEIGHT UTILITIES
   ============================================ */

.fw-1 { font-weight: 100; }  /* Thin */
.fw-2 { font-weight: 200; }  /* Extra Light */
.fw-3 { font-weight: 300; }  /* Light */
.fw-4 { font-weight: 400; }  /* Normal */
.fw-5 { font-weight: 500; }  /* Medium */
.fw-6 { font-weight: 600; }  /* Semi Bold */
.fw-7 { font-weight: 700; }  /* Bold */
.fw-8 { font-weight: 800; }  /* Extra Bold */
.fw-9 { font-weight: 900; }  /* Black */

/* ============================================
   BACKGROUND COLOR UTILITIES
   ============================================ */

.bg-2 {
    background-color: #fafafa;  /* Light gray background */
}

.bg-black {
    background-color: #000;     /* Black background */
}
