/* =========================================================
   FONTS – Loading ROBOTO Regular and Italics
   ========================================================= */
@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoSemiCondensed';
    src: url('../fonts/Roboto_SemiCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoItalic';
    src: url('../fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* ================================
   Global Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    /* background: #f0c260 url("../images/bg-image.png"); */
    background: url("../images/bg-image.png");
    background-size: cover;
}


/* ================================
   Container
================================ */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;   /* remove side padding */
}
/* ================================
   Section
================================ */
section {
    padding: 60px 0;   /* remove left & right padding */
    max-width: 1100px;
    margin: 116px auto 0;
}

/* ================================
   Logo
================================ */
.left-top {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: flex-start;  /* align to left */
    margin-left: -10px;
}

.main-subtitle{
    margin-top: 14px;
    font-family: 'RobotoRegular';
    color: white;
    font-size: 20px;
}

.logo-img {
    margin-left: 14px;
    height: 58px;
    max-width: 100%;
    object-fit: contain;
}

.left-top h3 {
    margin-left: 15px;
}


/* ================================
   Two Column Layout
================================ */
.two-column-section {
    padding: 0;
}

.two-columns {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.left-block,
.right-block {
    width: 48%;
}


/* ================================
   LEFT SIDE
================================ */
.left-bottom1 {
    margin-top: 145px;
}

.left-bottom-title {
    font-family: 'RobotoRegular';
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.left-bottom-text {
    font-family: 'RobotoRegular';
    font-size: 17px;
    color: white;
}

.left-bottom2 {
    margin-top: 55px;
}

.left-bottom3 {
    margin-top: 85px;
}

.lb-title {
    color: white;
    font-family: 'RobotoRegular';
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lb-subtitle {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.lb-text {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

/* ================================
   RIGHT SIDE
================================ */

/* Main Title */
.rb-main-title {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 38px;
    position: relative;
    margin-bottom: 10px;
}

/* Custom Horizontal Line */
.rb-main-title::after {
    font-family: 'RobotoRegular';
    color: white;
    content: "";
    display: block;
    width: 475px;
    height: 1px;
    background-color: #000;
    margin-top: -3px;
}

/* Small gap after main title */
.right-top {
    margin-bottom: 22px;
}

/* Section blocks */
.right-bottom2 {
    margin-bottom: 65px;
}

/* Section Titles */
.rb-section-title {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
  	letter-spacing: 4px;
}

/* Paragraph Text */
.rb-text1 {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 18px;
    line-height: 1.8;
}

.rb-text2 {
    font-family: 'RobotoRegular';
    color: white;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;

    width: 120%;        /* Increase width */
    max-width: 600px;   /* Optional limit */
}


/* Remove default paragraph spacing */
.left-block p {
    margin: 6px;
}

.right-block {
    width: 48%;
    margin-top: 136px;
}


/* ================================
   Footer
================================ */
.simple-footer {
    font-family: 'RobotoRegular';
    color: white;
    padding: 20px 0;
    font-size: 14px;
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
    .main-subtitle{
        font-family: 'RobotoRegular';
    }
    body {
        background-attachment: scroll; /* Prevents mobile glitch */
    }

    section {
        padding: 40px 20px;   /* Add left & right space */
        margin: 60px auto 0;
    }

    .container {
        padding: 0 15px;      /* Small safe gap */
    }

    .left-top h3 {
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px;   /* Adjust as needed */
    }

    .left-bottom1 {
        margin-top: 40px;   /* Reduce big desktop spacing */
    }

    .left-bottom-title {
        font-family: 'RobotoRegular';
        font-size: 16px;    /* Smaller for mobile */
        line-height: 1.3;
    }

    .left-bottom-text {
        font-family: 'RobotoRegular';
        font-size: 13px;
        line-height: 1.5;
    }

    .rb-main-title {
        font-family: 'RobotoRegular';
        font-size: 25px;
        position: relative;
        margin-bottom: 10px;
    }

    .rb-section-title {
        font-family: 'RobotoRegular';
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .two-columns {
        flex-direction: column;
        gap: 40px;
    }

    .left-block,
    .right-block {
        width: 100%;
        margin: 0;
    }

    .rb-text2 {
        font-family: 'RobotoRegular';
        max-width: 100%;
    }

}

