/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: black;
    --font-base: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.42857;
    color: var(--c-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: underline;
}

    a:hover {
        color: var(--c-brand-light);
    }

img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
}

body .mt-5 {
    margin-top: 0 !important;
    align-items: center;
}

/* NAVBAR */
.navbar {
    position: relative;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    padding-right: 15px;
    padding-left: 15px;
}

.navbar-nav .nav-link {
    font-family: "Segoe UI Semibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 10px;
}

.nav-link:hover {
    background-color: #0b7f99;
    color: white;
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}

.navbar-nav .line {
    width: 0.5px;
    height: 20px;
    background-color: #212529;
    margin: 10px 10px;
}

.navbar-toggler {
    width: 47px;
    height: 34px;
    background-color: #0b7f99;
    border-radius: 0px;
    position: absolute;
    z-index: 100;
    right: 30px;
    top: 15px;
}

    .navbar-toggler .line {
        width: 100%;
        float: left;
        height: 2px;
        background-color: #fff;
        margin-bottom: 5px;
    }

/* Hide the line on small screens when the navbar is collapsed */
@media (max-width: 992px) {
    .navbar-nav .line {
        display: none;
    }

    .navbar-collapse {
        top: 45px;
        position: relative; /* Makes sure the collapse container respects the logo */
        z-index: 0;
        padding-bottom: 45px;
    }
}


/* HERO */
#hero {
    width: 100%;
    height: 50vh;
    background: url(../images/calltosirim1.png) center center no-repeat;
    position: relative;
    background-size: cover;
}

@media (min-width: 768px) {
    #hero {
        background-attachment: fixed;
    }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    color: #213e9a;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 700;
}

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        background: #ffffff;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h2 {
        font-size: 34px;
        margin-top: 21px;
        margin-bottom: 10.5px;
        font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 500;
        line-height: 1.1;
        color: #232222;
        text-align: left;
    }

    .section-title p {
        margin: 15px auto 30px auto;
        font-weight: 600;
    }

/* TELEPHONE DIRECTORY */
#directory {
    padding-top: 20px;
    padding-bottom: 30px;
}

/* CONTACT */

#contact .feedback {
    text-align: center;
}

@media (max-width: 768px) {
    #contact .feedback {
        padding-top: 20%;
        text-align: center;
    }
}

#contact .btn {
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fbb817;
    background: #fbb817;
    color: #213e9a;
    text-decoration: underline;
}

    #contact .btn:hover {
        background: #fff;
        border: 2px solid #fbb817;
    }

#contact .info i {
    font-size: 20px;
    color: #000000;
    float: left;
    width: 44px;
    height: 44px;
    background: #fbb817;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

#contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #353535;
}

#contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #686868;
}

#contact .info .email,
#contact .info .phone {
    margin-top: 40px;
}

#contact .info .address {
    margin-top: 10px;
}

    #contact .info .email:hover i,
    #contact .info .address:hover i,
    #contact .info .phone:hover i {
        background: #213e9a;
        color: #fff;
    }

/* FOOTER */

#footer {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: #232222;
    padding: 50px 0px 50px 0px;
}

#footer .h5 {
    font-size: 10px;
}

/*RESPONSIVE DATATABLES*/

table.dataTable > tbody > tr.child span.dtr-title {
    min-width: 85px !important;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words into the next line */
    word-break: break-word; /* Ensure breaking of long continuous words */
}


