@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --font-family: 'Lora', serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    --color-primary: #5C1D1C;
    --color-secondary: #FDF3E9;
    --color-third: #BAAB73;
    --heading-font: clamp(2rem, 5vw, 2.5rem);
    --para-font: clamp(1rem, 2.5vw, 1.125rem);
}


* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--heading-font);
}

h1 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

img,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-red{color:#5c1d1c;}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type="number"] {
    -moz-appearance: textfield;
}

header {
    background-color: var(--color-primary);
}

header nav .logo-wrapper {
    max-width: 200px;
}

.min-height {
    min-height: calc(100vh - 100px);
}

.primary-color {
    color: var(--color-third);
}

.bg-color {
    background-color: var(--color-primary);
}

.banner {
    min-height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
    background: url("../../images/One-Edge.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.banner::after {
    position: absolute;
    inset: 0;
    content: " ";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}



/* ---form---- */

.form-container {
    width: 100%;
    max-width: 620px;
    background: rgba(0,0,0,0.1);
    backdrop-filter:blur(6px);
    padding: 20px;
    margin-block: 20px;
    border-radius: 12px;
}

.form-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

.form-control,
.form-select {
    border: none;
    background-color:rgba(260,260,260,0.6);
    box-shadow: none;
    font-size: 14px;
    color: #5C1D1C;
}

.form-control:focus,
.form-select:focus {
    border-bottom: 2px solid #5C1D1C;
    outline: none;
    box-shadow: none;
}

.btn-submit {
    background: #C5A337;
    color: #fff;
    font-weight: bold;
    width: 100%;
    border-radius: 6px;
    margin-top: 15px;
}

.btn-submit:hover {
    background: #c5a4376f;
}

.form-label {
    margin: 0px;
    color: #fff; font-size:13px;
}

.sec-2-bg {
    background: url("../../images/academicoverbg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-wrapper {
    border: 1px solid black;
    border-radius: 12px;
    background-color: white;
    height: 100%;
}

.bg-color {
    background-color: var(--color-primary);
}

.bg-color-2 {
    background-color: #F9FAFC;
}

.p-width {
    max-width: 900px;
}

.icon-wrapper img {
    max-width: 80px;
}

.content p {
    margin: 0;
}

.bg-img-2 {
    background: url("../../images/sec-two-banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.col-box-wrapper {
    background: rgba(169, 126, 21, 0.81);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* -----section3--- */



.col-box-wrapper .icon-wrapper-2 {
    max-width: 100px;
}

.col-box-wrapper p {
    color: white;
}

.col-box-wrapper .icon-wrapper-2 img {
    filter: invert(100%);
}


.bg-color-3 {
    background-color: #F1EEEA;
}

.main-btn {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #C5A337;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    display: inline-block;
}

.main-btn:hover {
    background: #C5A337;
}

.color-org {
    color: #F39244;
}

.main-btn>svg {
    width: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.main-btn:hover svg {
    transform: translateX(5px);
}

.main-btn:active {
    transform: scale(0.95);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    padding: 3rem 0px;
}

.swiper-slide .content h5,
.swiper-slide .content p {
    text-align: center;
}


.slide-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-text {
    font-size: 0.95rem;
    color: #555;
}

.bg-img-3 {
    background: url("../../images/resilience.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg-img-3::after {
    position: absolute;
    inset: 0;
    content: " ";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.section3-inner-wrapper .content {
    max-width: 500px;
}

.img-sec3 {
    max-width: 470px;
}

.section3-inner-wrapper:hover .icon-wrapper-inner-2 {
    background-color: #5C1D1C;
}

.icon-wrapper-inner-2 {
    border-radius: 50%;
    background-color: #5c1d1c; border:1px solid #baab73;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-wrapper-inner-2 svg{fill:#baab73;}
.section3-inner-wrapper:hover .icon-wrapper-inner-2 {
    background-color: #baab73;
}

.section3-inner-wrapper:hover .icon-wrapper-inner-2 svg {
    fill: white; 
}

.icon-wrapper-inner {
    border-radius: 50%; margin-top:-77px;
    max-width: 100px;
    padding: 15px;
    background-color: #F4F5F9;
}

.section3-side {
    background-color: color-mix(in oklab, #fff 10%, transparent);
    backdrop-filter: blur(10px);
}

/* .transform-x {
    transform: translateY(-150px);
    margin-bottom: -50px;
}


@media (max-width: 768px) {
    .transform-x {
        transform: none;
        margin-bottom: 0;
    }
} */

.service-card {
    background: #fff;
    padding: 20px; height:100%;
    transition: all 0.3s ease;
    color: #333;
    border-top: 3px solid #5C1D1C;
    position: relative; margin-top:70px;
    z-index: 1;
}


.service-card * {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, fill 0.3s ease;
}
.service-card .icon-wrapper-inner{width:100px; height:100px; display:flex; align-items:center; justify-content:center; background-color:#fff; border:2px solid #5C1D1C;}
.service-card svg {
    transition: fill 0.3s ease; width:78%; fill:#5C1D1C;
}



/* .globe-wrapper {
    position: relative;
    z-index: 2;
}

.globe-img {
    width: 100px;
    height: auto;
}

.circle-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border: 2px dotted #5C1D1C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.goal {
    position: relative;
    z-index: 3;
    opacity: 1;
}

.goal-circle {
    width: 50px;
    height: 50px;
    background: #5C1D1C;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
} */


.circle-container {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 2;
}

.dotted-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed #baab73;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.center-label {
    position: absolute;
    top: 15%;
    left: 50%;
    z-index: -1;
    width: 300px;
    transform: translateX(-50%);
}


.value-point {
    position: absolute;
    width: 250px;
    opacity: 0.3;
    transform: translate(-50%, -50%);
}

.circle-number {
    width: 40px;
    height: 40px;
    background: #baab73;
    color: #000;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#value1 {
    top: -5%;
    left: 50%;
}

#value2 {
    top: 25%;
    left: 115%;
    text-align: justify;
}

#value3 {
    top: 75%;
    left: 120%;
    text-align: justify;
}

#value3 .circle-number {
    margin: 0px;
}

#value4 {
    top: 75%;
    left: 5%;
    text-align: end;
}

#value4 .circle-number {
    margin: 0px;
}

#value5 {
    top: 25%;
    left: -5%;
    text-align: end;
}

#value5 .circle-number {
    margin: 0px;
}


.sectionHead{font-size:45px;}

.btn-submit{display:flex; justify-content:center; gap:10px; align-items:center;}
#formLoader{width:15px; height:15px; border-radius:50px; border:1px solid #fff; border-right:0; display:none; animation: spin 1s linear infinite; /* rotate animation */}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@media only screen and (max-width: 600px) {
    .form-container {
        margin-left: 0px;
    }

    .inner-header-content .svg-wrapper svg {
        width: 15px;
    }

    .inner-header-content .content a {
        font-size: 0.7rem;
    }
    .sectionHead{font-size:35px;}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .form-container {
        margin-left: 0px;
    }
    .sectionHead{font-size:45px;}

    .align-center {
        display: flex;
        justify-content: center;
    }
    .circle-container{
        width:370px;
        height:370px;
    }
}