@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Roboto:wght@400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --color-primary: #C40100;
    --color-secondary: #6136ff;
    --color-secondary-dark: #18095a;
    --color-para-light: #757F95;
    --color-light: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.7);
    --color-body: #1c1c1c;
    --color-border: rgba(0, 0, 0, 0.08);
    --layout-max-width: 1200px;
    --shadow-strong: 0 16px 30px rgba(255, 90, 31, 0.35);
}

body {
    font-family: var(--font-body);
    color: var(--color-body);
    background-color: #ffffff;
    line-height: 1.6;
}

p {
    color: var(--color-para-light);
}

.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
    font-family: var(--font-heading);
}

.topbar {
    background: var(--color-secondary-dark);
    padding: 4px 20px;
}

.topbar__inner {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    color: var(--color-light);
}

.topbar__group {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.topbar__group--left {
    position: relative;
    padding: 12px 40px;
    background: var(--color-primary);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(255, 90, 31, 0.28);
    color: var(--color-light);
    overflow: visible;
}

.topbar__group--left::before,
.topbar__group--left::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    background: var(--color-secondary-dark);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.topbar__group--left::before {
    left: -26px;
}


.topbar__group--right {
    color: var(--color-light);
}

.topbar__item,
.topbar__link,
.topbar__lang,
.topbar__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}

.topbar__item svg,
.topbar__link svg,
.topbar__lang svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.topbar__lang {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    padding: 0;
}

.topbar__lang .topbar__chevron {
    display: inline-flex;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

.topbar__social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.topbar__social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 200ms ease-in-out, background 200ms ease-in-out;
}

.topbar__social-link img {
    width: 16px;
    height: 16px;
    display: block;
}

.topbar__social-link:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.primary-nav {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.primary-nav__inner {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 12px 20px;
    
}

.primary-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-secondary-dark);
}

.primary-nav__logo {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-nav__logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.primary-nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-weight: 700;
}

.primary-nav__brand-line {
    display: inline-flex;
    align-items: baseline;
}

.primary-nav__brand-line--top {
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    font-weight: 700;
}

.primary-nav__brand-accent {
    color: var(--color-secondary-dark);
    margin-right: 4px;
    font-weight: bolder;
}

.primary-nav__brand-highlight {
    font-weight: bolder;
    color: var(--color-secondary-dark);
}

.primary-nav__brand-line--bottom {
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    margin-top: 4px;
    font-weight: bolder;
}

.primary-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 80px;
    list-style: none;
    width: 60%;
    justify-content: space-between;
}

.primary-nav__link {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-secondary-dark);
    text-decoration: none;
    padding-bottom: 6px;
    transition: color 200ms ease-in-out;
}

.primary-nav__links .dropdown {
    position: relative;
  }
  
  .primary-nav__links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 10;
    width: 200px;
  }
  
  .primary-nav__links .dropdown-menu li {
    padding: 0;
  }
  
  .primary-nav__links .dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--color-secondary-dark);
    text-decoration: none;
    font-weight: 600;
  }
  
  .primary-nav__links .dropdown-menu li a:hover {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  /* Show dropdown on hover */
  .primary-nav__links .dropdown:hover .dropdown-menu {
    display: block;
  }
  

.i100 {
    width: 28px !important;
    height: 28px !important;
}

.i101 {
    width: 15px;
    height: 15px;
}

.primary-nav__link:hover,
.primary-nav__link--active {
    color: var(--color-primary);
}

.primary-nav__caret {
    display: inline-block;
    width: 17px;
    height: 21px;
    margin-left: 6px;
    vertical-align: middle;
    pointer-events: none;
}

.primary-nav__actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

/* .primary-nav__search {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 200ms ease-in-out, color 200ms ease-in-out;
} */

.primary-nav__search svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-secondary-dark);
    stroke-width: 1.8;
    fill: none;
}

.primary-nav__search:hover {
    border-color: var(--color-primary);
}

.primary-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-strong);
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.primary-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 90, 31, 0.4);
}

.i301 {
    width: 18px;
    height: 18px;
}

.primary-nav__toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary-dark);
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    cursor: pointer;
}

.primary-nav__toggle span {
    display: block;
    height: 2px;
    background: var(--color-secondary-dark);
    border-radius: 1px;
}
#i1 {
    width: 30px;
    display: none;
}


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

.w {
    width: 1200px;
    margin: 0 auto;
}

.fsb {
    display: flex;
    justify-content: space-between;
}

.fsa {
    display: flex;
    justify-content: space-around;
}

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.e1 {
    text-align: center;
}

a:focus,
button:focus,
textarea:focus,
input:focus {
    outline: none;
}

button {
    cursor: pointer
}

.ko2 {
    border-color: red !important;
}

.ko1 {
    color: red;
    font: normal 12px var(--font-body);
    margin-top: 5px;
    word-spacing: 1px;
}

.ok,
.ko0 {
    margin: 20px 0;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
}

.ok {
    color: #3ba33f;
    border: 2px solid #3ba33f;
    background: #f0ffdf;
}

.ko0 {
    color: #a33b3b;
    border: 2px solid #a33b3b;
    background: #ffe6df;
}



/* Footer */
#zfooter {
    position: relative;
    padding: 70px 30px 25px;
    background: #0A2155;
    color: var(--color-light);
    overflow: hidden;
}

#zfooter::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/shape.png');
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    pointer-events: none;
}

#zfooter::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    max-width: var(--layout-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;

}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 30%;
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.footer-brand__logo img {
    height: 92px;
    width: auto;
    display: block;
}

.footer-brand__copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    display: none;
}

.footer-newsletter__label {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-light);
}

.footer-newsletter__form {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 8px 8px 18px;
    max-width: fit-content;
    box-shadow: 0 26px 48px rgba(11, 4, 64, 0.32);
    backdrop-filter: blur(4px);
}

.i303 {
    width: 18px;
    height: 18px;
}

.footer-newsletter__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-light);
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-newsletter__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-newsletter__input {
    flex: 1;
    border: 0;
    font-size: 15px;
    font-weight: 500;
    color: #091846;
    background: transparent;
}

.footer-newsletter__input::placeholder {
    color: rgba(9, 24, 70, 0.55);
}

.footer-newsletter__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 0;
    background: var(--color-primary);
    color: var(--color-light);
    font-weight: 600;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease;
    box-shadow: 0 26px 46px rgba(255, 90, 31, 0.34);
}

.footer-newsletter__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 64px rgba(255, 90, 31, 0.42);
}

.footer-links-wrap {
    display: flex;
    flex-direction: column;
}

.footer-title {
    position: relative;
    margin: 0 0 22px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light);
    display: inline-block;
    letter-spacing: 0.01em;
    padding-bottom: 14px;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary);
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: var(--color-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50px;
    background: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 16px 32px rgba(255, 90, 31, 0.45);
    flex-shrink: 0;
}

.footer-contact__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-contact__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact__label {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-light);
}

.footer-contact__value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}
.fta5{
    text-decoration: none;
}

.footer-socials {
    display: inline-flex;
    gap: 14px;
    margin-top: 6px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-primary);
    box-shadow: 0 16px 32px rgba(10, 4, 64, 0.32);
    transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #ff7a1c 0%, #ff5a1f 100%);
    color: var(--color-light);
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom strong {
    font-weight: 700;
    color: var(--color-light);
}

/* .d1 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.i1 {
    width: 25%;
    object-fit: contain;
} */
.d1 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.i1 {
	width: 45px;
	height: 45px;
	object-fit: contain;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.i2{
    width: 145px;
}

.i1:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}


.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 20px 40px rgba(255, 90, 31, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    z-index: 20;
}

.back-to-top__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#newa {
        text-decoration: none;
    }


/* responsive  */
@media screen and (max-width:1240px) {
    .w {
        width: 100%;
        padding: 0 30px;
    }
    /* header  */
    .topbar__inner {
        padding: 0 25px;
    }
    .primary-nav__links {
        margin: 0 58px;
    }
    /* footer  */
    /* .footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 2.1fr) repeat(2, minmax(0, 1fr));
    }
    .footer-brand {
        width: auto;
    } */
    .i2{
        width: 110px;
    }
}

    @media screen and (max-width:1100px){
        .footer-grid {
            display: grid;
            grid-template-columns: minmax(0, 2.1fr) repeat(1, minmax(0, 1fr));
        }
        .footer-brand {
            width: auto;
        }
        .i1{
            width: 50px;
            height: 50px;
        }
        .i2{
            width: 130px;
        }
        .footer-brand__copy{
                width: 65%;
        }
    }
@media screen and (max-width:992px) {
    /* header  */
    .topbar__inner {
        flex-direction: column;
    }
    .topbar__inner {
        padding:5px 0;
        gap: 15px;
    }
    .primary-nav {
        position: relative;
    }
    .primary-nav__links {
        position: absolute;
        top: 88px;
        margin-left: 0px;
        width: 100%;
        left: 0;
        flex-direction: column;
        display: flex; 
        border-top: 1px solid black;
        
        background: #ffffff;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        
        height: 0;          
        padding: 0;          
        overflow: hidden;    
        opacity: 0;          
        visibility: hidden;  

        transition: 
            height 0.4s ease-in-out, 
            padding 0.4s ease-in-out, 
            opacity 0.4s ease-in-out, 
            visibility 0s 0.4s; 
    }
    .primary-nav__links.is-open {
        padding: 20px 0; 
        opacity: 1;     
        visibility: visible;
        transition-delay: 0s; 
        height: auto;
    }
    #i1 {
        display: block;
    }
    .primary-nav__links .dropdown:hover .dropdown-menu{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .primary-nav__links .dropdown{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* footer  */
    .footer-newsletter__input {
        width: 140px;
    }
    .footer-newsletter__form {
        padding: 8px;
    }
    .footer-newsletter__button {
        padding: 12px 10px;
    }
    .i2{
        width: 120px;
    }
    
    
    
}

@media screen and (max-width:768px) {
    /* header  */
    .topbar__group--left {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        display: none;
    }

    /* footer  */
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 50px;
    }
    .footer-shell {
        position: relative;
    }
    .footer-newsletter__form {
        position: absolute;
        bottom: 130px;
    }
    .footer-contact__value {
        display: flex;
        flex-direction: column;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .d1{
        gap: 5px;
    }
    .i1{
        width: 39px;
        height: 39px;
    }
    .i2{
        width: 100px;
    }
    .footer-brand__copy{
        width: 100%;
    }
}


@media screen and (max-width:576px) {
    /* header  */
    .primary-nav__inner {
        padding: 10px;
        
        
    }
    .primary-nav__logo img {
        width: 40px;
    }
    .primary-nav__logo {
        width: 40px;
        height: 40px;
    }
    .primary-nav__brand-line--top {
        font-size: 18px;
    }
    .primary-nav__brand-line--bottom {
        font-size: 12px;
    }
    .primary-nav__cta {
        padding: 6px 15px;
    }
    .primary-nav__brand {
        flex-direction: column;
    }
    .primary-nav__brand-text {
        align-items: center;
    }
    .primary-nav__links {
        top: 107px;
    }
    .topbar__group--left {
        flex-direction: column;
        width: fit-content;
       padding: 10px 75px;
    }

    /* footer  */
    .footer-grid {
       display: flex;
       justify-content: space-between;
       gap: 30px;
    }
    .footer-grid {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .footer-brand__logo {
        justify-content: center;
    }
    .footer-newsletter__form {
       left: 50%;
       transform: translate(-50%, -50%);
    }
    .footer-newsletter__input {
        width: 125px;
    }
    .footer-newsletter__form {
        bottom: 116px;
    }
    .footer-contact__item {
        flex-direction: column;
        align-items: center;
    }
    .d1{
       justify-content: center;    
        gap: 10px;
    }
    .i1 {
        width: 50px;
        height: 50px;
    }
    .i2{
        width: 140px;
    }
    .footer-title::before{
        Width:100%;
    }

    

}
@media screen and (max-width:380px) {
    /* header  */
    .primary-nav__inner {
        gap: 12px;
        
    }
    .topbar__group--left {
        padding: 10px 40px;
    }
     .i1 {
        width: 40px;
        height: 40px;
    }
    .i2{
        width: 100px;
    }
}    



