* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "roboto", sans-serif;
}

nav {
    background-color: white;
    /* Background color of the navbar */
    box-shadow: 0 4px 8px rgba(213, 213, 213, 0.25);
    /* Shadow for depth */
    padding: 15px 12px;
    /* Padding for spacing */
    display: flex;
    /* Use flexbox for layout */
    justify-content: space-between;
    /* Space items evenly */
    align-items: center;
    /* Center items vertically */
    width: 100%;
    /* Full width */
    z-index: 1000;
    /* Ensure it sits above other content */
    position: sticky;
    /* Make it sticky */
    top: 0;
    /* Stick to the top of the viewport */
    left: 0;
    /* Align to the left */
    border-bottom: 3px solid #fd9827;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul:last-child {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
    align-items: center;
}

nav ul:last-child li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    position: relative;
    display: inline-block;
}

nav ul li a:hover {
    color: #fd9827;
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo-link {
    transform: none !important;
}

.logo-link img {
    width: 220px;
    height: auto;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #fd9827;
    left: 50%;
    bottom: 0;
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: #fd9827;
    font-weight: bold;
}

nav ul li a.active::after {
    width: 100%;
    background-color: #fd9827;
}

nav ul li a.logo-link {
    padding: 0;
}

nav ul li a.logo-link:hover,
nav ul li a.logo-link:hover::after {
    color: inherit;
    width: 0;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    transition: transform 0.3s ease;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.4s ease-in-out;
    border-radius: 2px;
}

.special_animation {
    width: 100%;
    background: linear-gradient(90deg, #fd9827, #f87979, #fd9827);
    background-size: 200% 200%;
    animation: gradient-rotate 4s linear infinite;
    color: #fff;
    padding: 8px 0;
    font-size: 20px;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.pramukh_info {
    width: 100%;
    background-color: black;
    padding: 10px 0;
}

.social_media {
    color: white;
}

.social_media p {
    margin-bottom: 0;
}

.social_media p a {
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
}

.social_media p a svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
}

.social_media p a:hover svg {
    transform: rotate(360deg);
    color: #fd9827;
}



.social_contact {
    color: white;
}

.social_contact {
    display: flex;
    align-items: center;
    justify-content: end;
}

.social_contact a svg {
    width: 20px;
    height: 20px;
}

.social_contact p {
    margin-bottom: 0;
    margin-left: 5px;
}


.hero-section {
    background-image: url('img/h1.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    animation: changeBg 18s infinite;
    /* Total duration */
}

@keyframes changeBg {
    0% {
        background-image: url('img/h2.webp');
    }

    14.28% {
        background-image: url('img/h3.webp');
        /* Starts transition after 2 seconds */
    }

    28.56% {
        background-image: url('img/h4.webp');
        /* Starts transition after 2 seconds */
    }

    42.84% {
        background-image: url('img/h5.webp');
        /* Starts transition after 2 seconds */
    }

    57.12% {
        background-image: url('img/h6.webp');
        /* Starts transition after 2 seconds */
    }

    71.4% {
        background-image: url('img/h7.webp');
        /* Starts transition after 2 seconds */
    }

    85.68% {
        background-image: url('img/hero6.webp');
        /* Starts transition after 2 seconds */
    }

    100% {
        background-image: url('img/h7.webp');
        /* Loop back to the first image */
    }
}




.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 152, 39, 0.5), rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0));
    /* Added blue color */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.text-slider h1 {
    position: relative;
    z-index: 3;
}

.text-slider h1 {
    font-size: 45px;
    color: white;
}

.text-p-slider {
    height: 80px;
}

.text-p-slider p {
    font-size: 22px;
    color: #fff;
}

.typed-cursor {
    display: none;
}


.three_box {
    width: 100%;
    background-color: #fff8ef;
    padding: 40px 0;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.our_div {
    width: 100%;
    text-align: center;
}

.our_div h2 {
    color: #ff8700;
    margin-top: 20px;
}

.our_div p {
    font-size: 18px;
    color: #5a5a5a;
}

.imge_box_text {
    width: 100%;
    background-color: #ffffff;
    padding: 16px 10px;
    border-radius: 8px;
    border-top: 3px solid #fd9827;
}

.img_box img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
}

.img_box img:hover {
    transform: scale(1.05);
    /* Slightly zoom in the image */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    /* Add a shadow on hover */
}

.text_division {
    padding: 8px 12px;
    margin-top: 10px;
}

.img_text h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.img_text p {
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.view_more button {
    width: 100%;
    background-color: #fd9827;
    color: white;
    padding: 12px 0;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    border: 1px solid transparent;
    transition: 0.6s ease-in-out;
}

.view_more button:hover {
    background-color: white;
    color: #fd9827;
    border-radius: 8px;
    font-size: 20px;
    border: 1px solid #fd9827;
}

.modal_body_img img {
    width: 100%;
}










.image-slider {
    padding: 30px 0;
    position: relative;
    text-align: center;
    background-color: #f8f8f8;

}

.floating-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-boxes .box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid rgb(134 255 159);
}

.floating-boxes .box div:nth-child(1) {
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}

.floating-boxes .box div:nth-child(2) {
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.floating-boxes .box div:nth-child(3) {
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}

.floating-boxes .box div:nth-child(4) {
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.floating-boxes .box div:nth-child(5) {
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.floating-boxes .box div:nth-child(6) {
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.floating-boxes .box div:nth-child(7) {
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.floating-boxes .box div:nth-child(8) {
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.floating-boxes .box div:nth-child(9) {
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.floating-boxes .box div:nth-child(10) {
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}

.floating-boxes .box div:nth-child(11) {
    top: 40%;
    left: 35%;
    animation: animate 8s linear infinite;
}

.floating-boxes .box div:nth-child(12) {
    top: 85%;
    left: 15%;
    animation: animate 11s linear infinite;
}

.floating-boxes .box div:nth-child(13) {
    top: 15%;
    left: 80%;
    animation: animate 9s linear infinite;
}

.floating-boxes .box div:nth-child(14) {
    top: 50%;
    left: 75%;
    animation: animate 13s linear infinite;
}

.floating-boxes .box div:nth-child(15) {
    top: 5%;
    left: 50%;
    animation: animate 14s linear infinite;
}

.floating-boxes .box div:nth-child(16) {
    top: 90%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.floating-boxes .box div:nth-child(17) {
    top: 40%;
    left: 5%;
    animation: animate 15s linear infinite;
}

.floating-boxes .box div:nth-child(18) {
    top: 85%;
    left: 85%;
    animation: animate 16s linear infinite;
}

.floating-boxes .box div:nth-child(19) {
    top: 10%;
    left: 20%;
    animation: animate 8s linear infinite;
}

.floating-boxes .box div:nth-child(20) {
    top: 60%;
    left: 90%;
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0% {
        transform: scale(0) translateY(-90px) rotate(360deg);
        opacity: 1;
    }

    100% {
        transform: scale(1.3) translateY(-90px) rotate(-180deg);
        border-radius: 50%;
        opacity: 0;
    }
}




.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #005f99;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    padding: 10px;
}





.our_storage_div {
    width: 100%;
    text-align: center;
}

.our_storage_div {
    margin-bottom: 30px;
}

.our_storage_div h2 {
    color: #161616;
    margin: 10px 0 10px 0;
}

.our_storage_div p {
    font-size: 18px;
    color: #5a5a5a;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 25px !important;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.additional-icon {
    width: 40px;
    height: 40px;
    background-color: #ff8700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
    border: 2px solid transparent;
    animation: moveIcon 0.8s infinite ease-in-out;
}

@keyframes moveIcon {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
        /* Moves right */
    }

    100% {
        transform: translateX(0);
        /* Returns to original position */
    }
}

.additional-icon:hover {
    background-color: white;
    border: 2px solid #ff8700;
}

.additional-icon svg {
    width: 18px;
    height: 18px;
}

.additional-icon svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.additional-icon:hover svg path {
    fill: #fd9827;
}









.cold-storage-benefits {
    padding: 60px 0;
    background-color: #f3f8fb;
}

.benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #161616;
}

.benefits-header p {
    font-size: 18px;
    color: #5a5a5a;
}


.benefit-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease-in-out;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background-color: #fd9827;
    cursor: pointer;
}

.benefit-item:hover h4 {
    color: white;
}

.benefit-item:hover p {
    color: white;
}

.benefit-item:hover .icon-box svg path {
    fill: white;
}

.icon-box {
    margin-bottom: 20px;
}

.icon-box svg {
    width: 50px;
    height: 50px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fd9827;
}


.icon-box {
    margin-bottom: 20px;
}

.icon-box svg {
    width: 50px;
    height: 50px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fd9827;
}

.benefit-item p {
    font-size: 16px;
    color: #5a5a5a;
}






































.footer_end {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 30px 0;
    font-family: Arial, sans-serif;
}

.footer_end h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff8700;
}

.footer_end p,
.footer_end a {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
}

.footer_end a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.4s ease-in-out,
        font-size 0.4s ease-in-out,
        text-underline-offset 0.4s ease-in-out;
}

.footer_end a:hover {
    color: #ff8700;
    text-decoration: underline;
    text-underline-offset: 4px;
}


.about_com,
.quick_links,
.contact_det {
    margin-bottom: 20px;
}

.footer_logoo {
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.footer_logoo img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.quick_links p {
    margin-bottom: 8px;
}

.quick_links a {
    display: inline-block;
}

.contact_det p {
    margin: 0;
}

.footer_end .row:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ff8700;
}










.special-features {
    width: 100%;
    padding: 60px 0;
}



.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 18px;
    color: #7F8C8D;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 18px;
    padding: 10px 0 0 14px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.features-list li span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.features-list li svg {
    fill: #ff8700 !important;
    width: 24px;
    height: 24px;
}

.features-list li i {
    font-size: 22px;
    color: #3498DB;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background-color: #ecf0f1;
    transition: background-color 0.3s ease;
}










/* about us section */
.about-section {
    background-image: url('img/about_us.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}


.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.text-slider {
    position: relative;
    z-index: 2;
}

.h1h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px #ff8700;
    /* Updated text shadow color */
}


.card {
    border-radius: 15px;
}

.card-body {
    padding: 30px;
    min-height: 420px !important;
}

.about_h2 {
    font-size: 28px;
    color: #ff8700;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgb(196, 196, 196);
    padding-bottom: 15px;
}

.about_h2 span {
    display: inline-flex;
    margin-right: 15px;
}

.about_h2 span svg {
    width: 35px;
    height: 35px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.6s ease forwards !important;
}

.list-unstyled {
    text-align: justify;
}

.custom-card {
    border-radius: 18px !important;
}

.custom-card p {
    text-align: justify;
}



/* infrastructure css */
.infra-section {
    background-image: url('img/infrastructure.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}


.infra-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.text-slider {
    position: relative;
    z-index: 2;
}

.p_other {
    font-size: 20px;
}

.h1h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px #ff8700;
}



/* infrastructure css */
.infra_three {
    width: 100%;
    background-color: #fffaf4;
    padding: 40px 0;
}

.infra_three h1 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #ff8700;
}

.infra_three h2 {
    margin-left: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.list-unstyled {
    padding-left: 20px;
}

.list-unstyled li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style: none;
    transition: color 0.3s ease;
    font-size: 17px;
}

.list-unstyled li:before {
    content: "✓";
    color: #007bff;
    position: absolute;
    left: 0;
}

.value-added {
    background-color: #e7f3fe;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #007bff;
    transition: transform 0.3s;
}

.value-added:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.special-features {
    background-color: #e9ffe9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #28a745;
    transition: transform 0.3s;
}

.special-features:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

.advantages {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ffc107;
    transition: transform 0.3s;
}

.advantages:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

@media (max-width: 768px) {
    .infra_three h1 {
        font-size: 1.8rem;
        margin-bottom: 0 !important;
    }

    .section {
        padding: 20px;
    }
}









/* process method css */
.process-section {
    background-image: url('img/hero4.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}


.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.process_Section {
    width: 100%;
    padding: 40px 0;
    background-color: #fff9f3;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process_title {
    text-align: center;
    margin-bottom: 30px;
}

.process_title h2 {
    font-size: 36px;
    color: #ff8700;
    font-weight: bold;
}

.process_img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.process_img img {
    max-width: 60%;
    height: auto;
    object-fit: cover;
    animation: rotateImage 3s ease-in-out infinite;
}

@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.process-method {
    width: 100%;
    padding: 30px;
    background-color: #fbfbfb;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.bullet-icon {
    font-size: 2rem;
    color: #ff8700;
    margin-right: 15px;
    line-height: 1.2;
}

.process-content h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.process-content p {
    font-size: 17px;
    text-align: justify;
    color: #555;
    line-height: 1.6;
}






/* process method css */
.con-section {
    background-image: url('img/contact_us.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}


.con-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}


.contact-section {
    padding: 40px;
    background-color: #f9f9f9;
    /* Light background for contrast */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.contact-section h2 {
    color: #ff8700;
    /* Darker text color for the heading */
    margin-bottom: 20px;
    /* Space below the heading */
}

.contact-info {
    font-size: 16px;
    /* Slightly larger font for readability */
    line-height: 1.6;
    /* Improved line spacing */
    color: #555;
    /* Softer text color for the body */
}

.contact-info a {
    color: #ff8700;
    /* Bootstrap primary color for links */
    text-decoration: none;
    /* Remove underline from links */
    transition: 0.4s ease-in-out;
}

.contact-info a:hover {
    text-decoration: underline;
    /* Underline on hover for links */
    color: #ff8700 !important;
}

.map-wrapper {
    border-radius: 15px;
    /* Rounded corners for the map */
    overflow: hidden;
    /* Hide overflow for rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Optional: add shadow for better appearance */
}

.foollow_us_footer {
    display: inline;
    font-size: 22px;
    color: #ff8700;
    font-weight: 500;
    padding-bottom: 20px;
}

.special_center p a {
    margin: 0 5px;
    padding-top: 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
}

.special_center p a svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
}

.special_center p a:hover svg {
    transform: rotate(360deg);
    color: #fd9827;
}

.modal-content {
    border-radius: 20px !important;
}

.modal-title {
    color: #ff8700;
}

.btn-close {
    transition: transform 0.4s ease-in-out;
}

.btn-close:hover {
    transform: rotate(180deg);
}

.ins {
    color: #fd9827;
}