* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 3rem;
}

body {
background: linear-gradient(230deg, #002233, #3c5306);
color:#c4dadb;
}

@font-face {
    font-family: 'Anydore';
    src: url('./Anydore.woff2') format('woff2');
}

.anyFont {
    font-family: 'Anydore' !important;
}

@font-face {
    font-family: 'Ballista';
    src: url('./Ballista.woff2') format('woff2');
}

.ballFont {
    font-family: 'Ballista' !important;
}

@font-face {
    font-family: 'zapf';
    src: url('./zapf.woff2') format('woff2');
}

.zapFont {
    font-family: 'zapf' !important;
}

@font-face {
    font-family: 'Segira';
    src: url('./Segira.woff2') format('woff2');
}

.segFont {
    font-family: 'Segira' !important;
}


/**************FOOTER*******************/
.footBg {
    background: url('/img/ftbg.png'), #3b6603;
    background-blend-mode: multiply;
}

/***************USE CUSTOM ANIMATION 
***********/
.SUMONR {
    animation: slideInRight 0.8s ease-out;
}

.SUMONL {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/****************Shadowtext*************************/

.txtShadow {
    text-shadow: 1px 1px 3px #000;
}

.textJustify {
    text-align: justify !important;
}

.customFontSize {
    font-size: 18px !important;
}

/******************AnimatedTitle********* 
NOTE:: Don't use bootstrap text-color class
*****************/
.smartTitle {
    animation: suMon 3s infinite;
    -webkit-animation: suMon 3s infinite;
}

@keyframes suMon {
    0% {
        color: #c0d6fd;
    }

    25% {
        color: #e2f0ea;
    }

    50% {
        color: #faa320;
    }

    75% {
        color: #acf781;
    }

    100% {
        color: #c0d6fd;
    }
}

/*************TOPBOTTOM MARGIN****************/
.topBottom {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.onlyTop {
    margin-top: 6rem !important;
}

.onlyBottom {
    margin-bottom: 6rem !important;
}

/********ANIMATIO EFFECTS*******************/
/**In this example, the delay has been added to the animation property by 
adding 5s after the easing effect. So the div will wait for 2 seconds before 
starting the slide down animation. */
.slideDown {
    animation: slideDown ease-in-out 3s;
    -webkit-animation: slideDown ease-in-out 3s;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/****************FADE UP************************/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }

    0% {
        color: #f10808;
    }

    25% {
        color: #190bda;
    }

    50% {
        color: #590888;
    }

    75% {
        color: #1e8105;
    }

    100% {
        color: #f10808;
    }
}

.fadeUp {
    animation: fadeUp 3s infinite;
    -webkit-animation: fadeUp 3s infinite;
}


/*----------imaage animation zoom-------*/
.zoomImg img {
    transition: transform 0.5s ease;
    animation: sumonZoom 5s infinite alternate;
    -webkit-animation: sumonZoom 5s infinite alternate;
    overflow: hidden;
}

@keyframes sumonZoom {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    /* 50% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
}*/
    100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}

/***************************/

.zoomImgAlt img {
    transition: transform 0.5s ease;
    animation: sumonZoomAlt 5s infinite alternate;
    -webkit-animation: sumonZoomAlt 5s infinite alternate;
    overflow: hidden;
}

@keyframes sumonZoomAlt {
    0% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
}

    /* 50% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
}*/
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

/******************ZOOM***************/

.img-hover-zoom {
    height: 250px !important;
    width: 250px !important;
    overflow: hidden;
    border: 2px solid #ebebeb;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: transform 2s ease;
    -webkit-transition: transform 2s ease;
    -moz-transition: transform 2s ease;
    -ms-transition: transform 2s ease;
    -o-transition: transform 2s ease;
}


/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover {
    border: 1px solid #400040;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* Custom line style with a subtle gradient */
.line-style {
    width: 10%;
    height: 4px;
    background: linear-gradient(to right, #ff0057, #400040);
    opacity: 0.9;
    border-radius: 4px;
    margin: 0;
}

.line-style2 {
    width: 10%;
    height: 4px;
    background: linear-gradient(to right, #400040, #ff0057);
    opacity: 0.9;
    border-radius: 4px;
    margin: 0;
}


/*******GALLERY ZOOM ON **********/
.image-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

/*   ✅⚠️this block will create image size square
.zoom-wrapper {
position: relative;
width: 100%;
padding-bottom: 100%; /* Creates a square aspect ratio /
overflow: hidden;
border-radius: 1rem;
} */

.zoom-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    margin: 0 auto;
    /* Center the wrapper in the column */
}

.zoomable-image {
    transition: transform 0.3s ease;
    transform-origin: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/*******GALLERY ZOOM OFF **********/

.universalimg:hover {
    transform: rotateZ(1deg) scale(.95);
    -webkit-transform: rotateZ(1deg) scale(.95);
    -moz-transform: rotateZ(1deg) scale(.95);
    -ms-transform: rotateZ(1deg) scale(.95);
    -o-transform: rotateZ(1deg) scale(.95);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}


/*-----------------animated button starts----------------*/  

.pulse:hover,
.pulse:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

.pulse {
  --color: #ff8040;
  --hover: #ef8f6e;
}
.buttonSlider {
  color: var(--color) !important;
  transition: 0.25s !important;
  -webkit-transition: 0.25s !important;
  -moz-transition: 0.25s !important;
  -ms-transition: 0.25s !important;
  -o-transition: 0.25s !important;
}
.buttonSlider:hover, .buttonSlider:focus {
  border-color: var(--hover) !important;
  color: #00ffff !important;
  background-color: #170429 !important;
}
.buttonSlider {
  background: #360e007c !important;
  border: 2px solid !important;
  border-radius:10px !important;
  font: inherit !important;
  line-height: 1 !important;
  margin: 0.5em !important;
  padding: .5em 2em !important;
  -webkit-border-radius:10px !important;
  -moz-border-radius:10px !important;
  -ms-border-radius:10px !important;
  -o-border-radius:10px !important;
}

/*-----------------animated buttonEnds----------------*/ 