/* root */
:root {
    --primary-color: #33689d;
    --secondary-color: #49575d;
    --tertiary-color: #ffffff;
    --background-color: #e7e6e6;
}

body {
    background-color: #e8e8e8;
}

/* =================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* ================================================================ */
h1,
h2,
h6 {
    color: var(--primary-color);
    font-weight: bold;
}

h3,h5 {
    font-weight: bold;
}

p {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}

.background {
    background-color: var(--background-color);
}

/* ===================================================================== */
a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

a:hover {
    color: var(--bg-dark);
}

/* ================================================================== */
.btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}

.btn:hover::before {
    height: 560%;
}

.btn:hover {
    color: var(--primary-color);
    background-color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ====================================================================== */
.main-section {
    background-color: var(--primary-color);
    background:
        linear-gradient(to right, rgba(18, 144, 121, 0.8) 30%, rgba(255, 255, 255, 0) 100%),
        url('../images/banner/main-banner.jpg') no-repeat center/contain;
        margin-top: -6px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .main-section {
        background:
        linear-gradient(to right, rgba(18, 144, 121, 0.8) 30%, rgba(255, 255, 255, 0) 100%),
        url('../images/about/dr-saurabh-kumar.webp') no-repeat center/cover;
    }
}
@media screen and (max-width: 768px) {
    .col-md-6 {
        margin-top: 120px;
    }
}

/* ====================================================================== */

/* ====================================================================== */
.award-box {
    position: relative;
    top: -50px;
    background-color: var(--tertiary-color);
    padding: 40px;
    width: 80%;
    border-radius: 30px;
    margin: 0 auto;
  
}

.award-box:hover {
    background-color: var(--primary-color);
    background-image:
        radial-gradient(at 47% 33%, hsl(169.05, 46%, 45%) 0, transparent 59%),
        radial-gradient(at 82% 65%, hsl(169.05, 78%, 32%) 0, transparent 55%);
    backdrop-filter: blur(3px) saturate(133%);
    -webkit-backdrop-filter: blur(3px) saturate(133%);
    background-color: rgba(0, 203, 168, 0.37);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: var(--tertiary-color);
    transform: translateY(-5px);
}

/* ====================================================================== */
.about {
    background-color: #a1a3a3;
    border-radius:50px;
}

table,
tr,
th,
td {
    background-image:
        radial-gradient(at 47% 33%, hsl(169.05, 46%, 45%) 0, transparent 59%),
        radial-gradient(at 82% 65%, hsl(169.05, 78%, 32%) 0, transparent 55%);
    backdrop-filter: blur(3px) saturate(101%);
    -webkit-backdrop-filter: blur(3px) saturate(101%);
    background-color: rgba(0, 203, 168, 0.28);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    font-weight: bold;
}

/* ====================================================================== */
.service-table {
    padding: 20px;
    margin: 5px;
    backdrop-filter: blur(12px) saturate(85%);
    -webkit-backdrop-filter: blur(12px) saturate(85%);
    background-color: rgba(31, 136, 115, 0.84);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: var(--tertiary-color);
}

.service-table i {
    font-size: 20px;
    border-radius: 50%;
    color: black;
}

.service-table:hover {
    transform: scale(1.06);
    transition: all 0.3s ease-in-out;
}
.service-box{
    background-color: #a1a3a3;
    border-radius: 50px;
}

/* ====================================================================== */
.schedule-box {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 30px;
    color: var(--tertiary-color);
}

@media screen and (max-width: 768px) {
    .schedule-box {
        padding: 10px;
        font-size: 12px;
    }
}

/*  ==================================================================== */
.contact-icon {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    padding: 20px;
}

.contact-icon i:hover {
    color: #fff;
    transition: 0.5s;
}

.contact-icon i {
    padding: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
/* ===================================================================== */
.contact-us .form-container{
    border-radius: 60px;
}
.contact-us .form-container .form-control{
    border-radius: 30px;
    padding: 20px;
    border: 1px solid var(--secondary-color);
}
.contact-us .form-container .form-control::placeholder{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}
.contact-us .form-container .form-control:hover{
   border: 2px solid var(--primary-color);
}
/* ===================================================================== */
.awards-recognitions img{
    border-radius: 30px;
}