body{
    margin:0px;
}

.hero_wrap {
    background-image: url('/images/cyber-homepage.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    height: 75vh;
    max-width: 1135px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    padding: 60px 20px; 
}
.hero-content {
       text-align: center;
    border: 4px solid white;
    padding: 30px 40px;
    background: #013f58db;
}


.hero h1 {
       font-size: 46px;
    font-family: 'visuelt-Bold';
    color: white;
}

.hero h2 {
    margin-top:20px;
    margin-bottom:20px;
    font-size: 26px;
    font-family: 'visuelt-black';
    background-image: linear-gradient(117.92deg, #ffc328 21.16%, #e63700 91.58%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
       font-size: 20px;
    margin: 16px 0;
    width: 100%;
    font-family: 'visuelt-light';
    line-height: 36px;
    margin-top: 32px;
}

.cta-buttons {
      display: flex;
    gap: 16px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.first_btn {
    position: relative;
    padding: 20px 30px;
    margin-top: 20px;
    font-family: 'visuelt-light';
    text-transform: capitalize;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0 !important;
}

.first_btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 2px; 
    background: linear-gradient(117.92deg, #e63700  21.16%,#ffc328  91.58%);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
}

.first_btn:hover {
    background: linear-gradient(117.92deg, #e63700  21.16%,#ffc328  91.58%); /* Optional hover effect */
}



.second_btn {
    color: #fff;
    border: 0;
    padding: 15px 20px;
    margin-top: 20px;
    font-family: 'visuelt-light';
    text-transform: capitalize;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;

}

span.arrow {
    margin-left: 5px;
}
.half-circle-svg {
    width: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(29%);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.half-circle-svg>svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*tab section*/
.card_tab_sec {
    background-image: url('/images/banner2.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    padding: 20px;
}
.tabs-section {
    padding: 60px 40px;
    max-width: 1235px;
    margin: 0 auto;
}

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

.tab {
    flex: 1 1 200px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab.active {
    background: linear-gradient(117.92deg, #e63700 21.16%, #ffc328 91.58%);
    color: #ffffff;
}

.tab-img img {
    width: 40px;
}

.tab-label {
    font-size: 14px;
    font-weight: bold;
}

.tab-content {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 10px solid;
    border-image: linear-gradient(117.92deg, #e63700 21.16%, #ffc328 91.58%) 1;
    margin-right: 10px;
}

.tab-content h1 {
    margin-bottom: 20px;
    font-size: 38px;
    color: #333;
    margin-top: 10px;
}

.tab-content p {
    color: #595959;
    letter-spacing: .024em;
    font-size: 1.225rem;
    line-height: 30px;
    font-family: visuelt-Regular;
    text-align: center;
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .tabs {
        gap: 10px;
    }

    .tab {
        flex: 1 1 180px;
        padding: 30px 15px;
    }

    .tab-content h1 {
        font-size: 34px;
    }

    .tab-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 992px) {
    .tabs {
        gap: 10px;
    }

    .tab {
        flex: 1 1 160px;
        padding: 25px 10px;
    }

    .tab-content {
        padding: 30px;
    }

    .tab-content h1 {
        font-size: 30px;
    }

    .tab-content p {
        font-size: 1.1rem;
    }
}

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

    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab {
        flex: 1;
        padding: 20px;
        margin-right: 0;
    }

    .tab-content {
        padding: 25px;
    }

    .tab-content h1 {
        font-size: 28px;
    }

    .tab-content p {
        font-size: 1rem;
        line-height: 28px;
    }
}

@media (max-width: 500px) {
    .h3.head1{
        font-size: 25px !important;
    }
    .main-title{
        font-size: 25px !important;
    }
    .expert-section{
        padding: 30px !important;
    }
    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab {
        flex: 1;
        margin-right: 0;
        margin-bottom: 10px;
        padding: 20px;
    }

    .tab:last-child {
        margin-bottom: 0;
    }

    .tab-content {
        padding: 20px;
    }

    .tab-content h1 {
        font-size: 24px;
    }

    .tab-content p {
        font-size: 0.95rem;
        line-height: 24px;
    }
}

/* after card sec*/
.expert-section {
    padding: 50px;
    display: flex;
    max-width: 1235px;
    margin: 0 auto;
}

.expert-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
}

.text-side {
    flex: 1;
    margin-right: 0px;
}

.main-title {
       font-size: 36px;
    font-weight: bold;
    color: white;
    font-family: 'visuelt-medium';
    margin-bottom: 10px;
}

.sub-title {
     font-size: 28px;
    font-weight: bold;
    background: linear-gradient(117.92deg, #ffffff 21.16%, #ffc328 91.58%);
    margin-bottom: 20px;
    background-clip: text;
    font-family: 'visuelt-lightnew';
    -webkit-text-fill-color: transparent;
}

.content-side {
        flex: 1;
    margin: 0px 20px;
}

.description-text {
     font-size: 18px;
    color: white;
    font-family: 'visuelt-Regular';
    margin-bottom: 20px;
    line-height: 30px;
}

.cta-section {
    margin-top: 30px;
}

.cta-link {
display: inline-block;
    background: linear-gradient(117.92deg, #473eff 21.16%, #473eff 91.58%);
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-family: 'visuelt-medium';
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

/* another sec card sec*/
.why-unit42 {
    color: #fff;
    padding: 60px 20px 50px 20px;
    text-align: center;
    max-width: 1235px;
    margin: 0 auto;
}

.why-header h2 {
    background: linear-gradient(117.92deg, #030c2f 91.16%, #ffc328 91.58%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'visuelt-Bold';
}

.why-header h3 {
   font-size: 24px;
    margin-bottom: 20px;
    color: #011329;
    text-transform: uppercase;
    font-family: 'visuelt-medium';
}

.why-header p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    font-family: 'visuelt-lightnew';
    margin-left: auto;
    margin-right: auto;
    color: #000519;
}

.why-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
flex: 1;
    max-width: 300px;
    margin: 10px;
    padding: 20px 20px;
    text-align: left;
    border: 5px solid #473eff;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature h4 {
  margin-top: 30px;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(117.92deg, #081b33 91.16%, #ffc328 91.58%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'visuelt-black';
}

.feature p {
     font-family: 'visuelt-Regular';
    font-size: 14px;
    line-height: 1.5;
    color: #000519;
}
}

/* Responsive design */
@media (max-width: 768px) {
    .why-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .expert-container {
        flex-direction: column;
        align-items: center;
    }

    .text-side, .content-side {
        margin-right: 0;
        text-align: center;
    }

    .text-side {
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 22px;
    }

    .description-text {
        font-size: 16px;
    }

    .cta-link {
        font-size: 14px;
        padding: 10px 18px;
    }
}
/* Responsive Styling */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero h2 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
   
    
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 10px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .cta-buttons {
        gap: 8px;
    }
}
@media (min-width: 480px) and (max-width: 580px) {
    .second_btn {
        padding: 12px 0px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .feature_foundation{
        margin-bottom: 0px !important;
        padding: 0px !important;    
        text-align: center !important;
        
    }
    .content-side{
        margin-left: 0px;
    }
    .img_h_mobile{
        display: none;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero h2 {
        font-size: 24px;
    }
    .hero p {
        font-size: 14px;
    }
    .cta-buttons {
        gap: 4px;
    }
    .first_btn{
        padding: 12px 20px;
        font-size: 16px;
    }
    .second_btn {
        padding: 12px 0px;
        font-size: 16px;
    }
    
}

@media (max-width: 768px) {
    .why-features {
    display: block;
    
}
    .promo-wrapper{
        width:90%;
    }
    .why-unit42 {
    color: #fff;
    padding: 60px 20px 20px 20px;}
    
}


@media (min-width: 280px) and (max-width: 480px) {
  .feature-foundation-icon {
    height: 45px;
    width: 45px;
     margin-bottom: 0px !important; 
    margin-top: 20px;
}
}