/*
Theme Name: POFT
Author: Madhav
Version: 1.0
*/

.container{
    max-width:1200px;
    width:100%;
    margin:auto;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
}

.section {
    padding: 4rem 0;
}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Columns */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Tablet */
@media (max-width: 1024px) {
    .md-col-6  { grid-column: span 6; }
    .md-col-12 { grid-column: span 12; }
}

/* Mobile */
@media (max-width: 768px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        grid-column: span 12;
    }
}

/* Text alignment */
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-justify {
    text-align: justify !important;
}

/* Text colors */
.text-light {
    color: #fff !important;
}
.text-dark {
    color: #000 !important;
}
.text-primary {
    color: #0073e6 !important;
}
.text-secondary {
    color: #6c757d !important;
}
.text-success {
    color: #28a745 !important;
}
.text-danger {
    color: rgb(255 0 0) !important;
}
.text-warning {
    color: #ffc107 !important;
}
.text-info {
    color: #17a2b8 !important;
}
.text-muted {
    color: #6c757d !important;
}

/* Text transformations */
.text-uppercase {
    text-transform: uppercase !important;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}

/* Font weight */
.font-light {
    font-weight: 300 !important;
}
.font-normal {
    font-weight: 400 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-bold {
    font-weight: 700 !important;
}

/* Font style */
.italic {
    font-style: italic !important;
}


/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 5px !important; }
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 15px !important; }
.mt-4 { margin-top: 20px !important; }
.mt-5 { margin-top: 30px !important; }
.mt-6 { margin-top: 40px !important; }
.mt-7 { margin-top: 60px !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 5px !important; }
.mb-2 { margin-bottom: 10px !important; }
.mb-3 { margin-bottom: 15px !important; }
.mb-4 { margin-bottom: 20px !important; }
.mb-5 { margin-bottom: 30px !important; }
.mb-6 { margin-bottom: 40px !important; }
.mb-7 { margin-bottom: 60px !important; }

/* Margin Vertical (top + bottom) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 5px !important; margin-bottom: 5px !important; }
.my-2 { margin-top: 10px !important; margin-bottom: 10px !important; }
.my-3 { margin-top: 15px !important; margin-bottom: 15px !important; }
.my-4 { margin-top: 20px !important; margin-bottom: 20px !important; }
.my-5 { margin-top: 30px !important; margin-bottom: 30px !important; }
.my-6 { margin-top: 40px !important; margin-bottom: 40px !important; }
.my-7 { margin-top: 60px !important; margin-bottom: 60px !important; }


/* Padding All Sides */
.p-0 { padding: 0 !important; }
.p-1 { padding: 5px !important; }
.p-2 { padding: 10px !important; }
.p-3 { padding: 15px !important; }
.p-4 { padding: 20px !important; }
.p-5 { padding: 30px !important; }
.p-6 { padding: 40px !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 5px !important; }
.pt-2 { padding-top: 10px !important; }
.pt-3 { padding-top: 15px !important; }
.pt-4 { padding-top: 20px !important; }
.pt-5 { padding-top: 30px !important; }
.pt-6 { padding-top: 40px !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 5px !important; }
.pb-2 { padding-bottom: 10px !important; }
.pb-3 { padding-bottom: 15px !important; }
.pb-4 { padding-bottom: 20px !important; }
.pb-5 { padding-bottom: 30px !important; }
.pb-6 { padding-bottom: 40px !important; }

/* Padding Left */
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 5px !important; }
.pl-2 { padding-left: 10px !important; }
.pl-3 { padding-left: 15px !important; }
.pl-4 { padding-left: 20px !important; }
.pl-5 { padding-left: 30px !important; }
.pl-6 { padding-left: 40px !important; }

/* Padding Right */
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 5px !important; }
.pr-2 { padding-right: 10px !important; }
.pr-3 { padding-right: 15px !important; }
.pr-4 { padding-right: 20px !important; }
.pr-5 { padding-right: 30px !important; }
.pr-6 { padding-right: 40px !important; }

/* Horizontal & Vertical */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 5px !important; padding-right: 5px !important; }
.px-2 { padding-left: 10px !important; padding-right: 10px !important; }
.px-3 { padding-left: 15px !important; padding-right: 15px !important; }
.px-4 { padding-left: 20px !important; padding-right: 20px !important; }
.px-5 { padding-left: 30px !important; padding-right: 30px !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 5px !important; padding-bottom: 5px !important; }
.py-2 { padding-top: 10px !important; padding-bottom: 10px !important; }
.py-3 { padding-top: 15px !important; padding-bottom: 15px !important; }
.py-4 { padding-top: 20px !important; padding-bottom: 20px !important; }
.py-5 { padding-top: 30px !important; padding-bottom: 30px !important; }

.body-bg-light { background-color: #fff !important }
.bg-light { background-color: rgb(247, 247, 247) !important; }
.bg-dark { background-color: #000 !important; }
.bg-secondary { background-color: #6c757d !important; }
.bg-success { background-color: #28a745 !important; }
.bg-danger { background-color: rgb(255 0 0) !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #17a2b8 !important; }
.bg-transparent { background-color: transparent !important; }


/* H1 */
.heading-1 {
    font-size: clamp(3rem, 1.8rem + 2.5vw, 6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.4em;
}

/* Sub Page Heading */
.sub-page-heading {
    font-size: clamp(2.5rem, 1.5rem + 2vw, 4.5rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

/* H2 */
.heading-2 {
    font-size: clamp(2.25rem, 1.3rem + 1.8vw, 3.75rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.45em;
}

/* H3 */
.heading-3 {
    font-size: clamp(1.75rem, 1.1rem + 1.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

/* H4 */
.heading-4 {
    font-size: clamp(1.25rem, 0.9rem + 0.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

/* H5 */
.heading-5 {
    font-size: clamp(1.125rem, 0.85rem + 0.6vw, 1.5rem);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5em;
}

/* H6 */
.heading-6 {
    font-size: clamp(1rem, 0.8rem + 0.4vw, 1.25rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

.subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.subtitle-bold {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.text-normal {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.text-small {
    font-size: 16px;  /* 14px */
    line-height: 1.4;
}

.text-extra-small {
    font-size: 12px;
    line-height: 1.4;
}

.text-muted {
    color: #6c757d;
}

.text-lead {
    font-size: 1.25rem;   /* 20px */
    font-weight: 400;
    line-height: 1.6;
    color: #222;
}


.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }


.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;       /* fully rounded edges */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}


/* Primary Button */
.btn-primary {
    background-color: #0073e6;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #005bb5;
}

/* Secondary Button */
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #5a6268;
}

/* Light Button */
.btn-light {
    background-color: #f8f9fa;
    color: #222;
    border: 1px solid #ddd;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    background-color: #e2e6ea;
}

/* Dark Button */
.btn-dark {
    background-color: #222;
    color: #fff;
}


.btn-sm { padding: 5px 15px; font-size: 0.875rem; }
.btn-md { padding: 10px 25px; font-size: 1rem; }
.btn-lg { padding: 15px 35px; font-size: 1.25rem; }


.btn-outline-primary {
    background-color: transparent;
    color: #0073e6;
    border: 2px solid #0073e6;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #0073e6;
    color: #fff;
}

.btn-outline-dark{
    background-color: #fff;
    color: #222;
    border: 2px solid #222;
}   

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background-color: #222;
    color: #fff;
}

img.full-height {
    height: 100% !important;
}