@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


.body {
    font-family: 'Nunito Sans', sans-serif;
}

 /* Multi-Color Line */
 .multi-color-line {
    z-index: 10000;
    height: 5px;
    width: 100%;
    display: flex;
}

.multi-color-line div {
    flex: 1;
    height: 100%;
}

.red { background-color: #BB191E; }
.yellow { background-color: #CAA208; }
.blue { background-color: #0076AE; }
.brown { background-color: #BE6A2A; }


*{
    font-family: 'Nunito Sans', sans-serif ;
}


::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav-link-hover {
    position: relative;
    text-decoration: none;
    color: inherit;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FDD835;
    /* Green color for underline (matches outline-success) */
    transition: width 0.3s ease-in-out;
}

.nav-link-hover:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background */
    z-index: 1050; /* Make sure it appears above everything else */
    display: none; /* Initially hidden */
    flex-direction: column;
}

.fullscreen-nav {
    list-style-type: none;
    padding: 0;
    padding-right: 75px;

}

.fullscreen-nav li {
    margin: 20px 0; /* Space between items */
}

.fullscreen-nav a {
    font-size: 24px; /* Larger font size for mobile */
}

.close-button {
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
}


/* Hero Section Styling */
.hero-section {
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-about {
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.hero-content {
    position: relative;
    z-index: 1;
    /* Keeps the content above other elements like background videos/images */
    max-width: 600px;
    /* Limits the width for readability on larger screens */
    margin: 0 auto;
    /* Centers the content */
    padding: 20px;
    /* Adds spacing around the content for better spacing */
    color: white;
    /* Keeps text color white */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    /* Adds a shadow for better contrast on busy backgrounds */
    text-align: center;
    /* Centers text for a cleaner look */
}

.gfg {
    position: relative;
    width: 100%;
    text-align: center;
}

.gfg img {
    width: 100%;
    height: auto;
    display: block;
}

.text-container {
    position: absolute;
    color: rgb(255, 255, 255);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    text-align: center;
    font-size: 1.5vw; /* Makes it scale dynamically */
    max-width: 90%;
}

.text-container h3 {
    font-size: 1rem;
}

.text-container h1 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .gfg img{
        height: 130px;
    }

    .text-container {
        font-size: 3vw;
        text-align: center;
        width: 80%;
    }

    .text-container h3 {
        font-size: 0.9rem;
    }

    .text-container h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .text-container {
        font-size: 4vw;
        text-align: center;
        width: 90%;
    }

    .text-container h3 {
        font-size: 0.8rem;
    }

    .text-container h1 {
        font-size: 1.2rem;
    }
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Send video to the background */
}

.hero-content {
    position: relative;
    z-index: 1;
    /* Keeps the content above other elements like background videos/images */
    max-width: 600px;
    /* Limits the width for readability on larger screens */
    margin: 0 auto;
    /* Centers the content */
    padding: 20px;
    /* Adds spacing around the content for better spacing */
    color: white;
    /* Keeps text color white */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    /* Adds a shadow for better contrast on busy backgrounds */
    text-align: center;
    /* Centers text for a cleaner look */
}

.hero-content h1 {
    font-size: 3rem;
    /* Scales down slightly for responsiveness */
    font-weight: bold;
    margin-bottom: 20px;
    /* Adds space below the heading */
}

.hero-content p {
    font-size: 1.2rem;
    /* Slightly smaller font size for paragraphs */
    line-height: 1.8;
    margin-bottom: 20px;
    /* Adds spacing after the paragraph */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        /* Adjusts to fit within mobile viewports */
        margin: 0 auto;
        /* Center-align content for mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Scales down the heading size for mobile */
    }

    .hero-content p {
        font-size: 1rem;
        /* Scales down paragraph font size for mobile */
    }
}

.mobile {
    margin-left: 0px;
}

@media screen and (max-width: 768px) {
    .mobile {
        margin-left: 50px;
    }
}


/* CTA Section Styling */
.cta-section {
    background: linear-gradient(135deg, #1E88E5, #FB8C00);
    /* Blue to Orange gradient */
    color: #FFFFFF;
    /* White text for contrast */
    padding: 50px 20px;
    text-align: center;
    border-top: 5px solid #E53935;
    /* Red border for emphasis */
    border-bottom: 5px solid #FDD835;
    /* Yellow border for balance */
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Subtle shadow for readability */
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background-color: #000000;
    /* Black button */
    color: #FFFFFF;
    /* White text */
    padding: 9px 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for depth */
}

.cta-button:hover {
    background-color: #FDD835;
    /* Yellow hover effect */
    color: #000000;
    /* Black text on hover */
    transform: scale(1.05);
    /* Slight zoom on hover */
}







#background-wrap {
    bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	/* top: 0; */
	z-index: 0;
}

/* KEYFRAMES */

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -100%;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -100%;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -100%;
    }
}

@-webkit-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@-moz-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

/* ANIMATIONS */

.x1 {
    -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: -5%;
	top: 5%;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
}

.x2 {
    -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	left: 5%;
	top: 80%;
	
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
}

.x3 {
    -webkit-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 10%;
	top: 40%;
	
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	transform: scale(0.7);
}

.x4 {
    -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	-moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	
	left: 20%;
	top: 0;
	
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
}

.x5 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	left: 30%;
	top: 50%;
	
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
}

.x6 {
    -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 50%;
	top: 0;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
}

.x7 {
    -webkit-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 65%;
	top: 70%;
	
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
}

.x8 {
    -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	-moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	
	left: 80%;
	top: 10%;
	
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
}

.x9 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	left: 90%;
	top: 50%;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
}

.x10 {
    -webkit-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 80%;
	top: 80%;
	
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
}

/* OBJECTS */

.bubble {
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
	-moz-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
	
    height: 200px;
	position: absolute;
	width: 200px;
}

.bubble:after {
    background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,0.5)), color-stop(70%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 70%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 70%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 70%); /* IE10+ */
    background: radial-gradient(ellipse at center,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 70%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
    -webkit-box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3);
	-moz-box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3);
	
	content: "";
    height: 180px;
	left: 10px;
	position: absolute;
	width: 180px;
}



.hero {
    font-family: 'Nunito Sans', sans-serif;
    /* background: linear-gradient(135deg, #3ec3fe, #004d99); */
    color: rgb(99, 96, 96);
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    color: rgb(22, 22, 22);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.6;
}



.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.sector-card {
    background: linear-gradient(145deg, #d4d3d3, #f5f5f5);
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.8); */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #f5cc52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15),
                -8px -8px 20px rgba(255, 255, 255, 0.9); */
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.sector-card:hover h3 {
    color: #fd7e14;
}

.sector-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.sector-card:hover p {
    color: #444;
    transform: translateY(-3px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
    opacity: 0.2;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: all 0.3s ease;
}

.sector-card:hover .icon {
    opacity: 0.8;
    transform: rotate(15deg);
}

.mission {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission h2 {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.mission p {
    color: #444;
    line-height: 1.6;
}




.process-label {
    display: inline-block;
    background-color: #1b99d3;
    color: #FDD835;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}



.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 30%;
    /* Take up 30% width in desktop view */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: #FDD835;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .steps {
        flex-direction: row;
        align-items: center;
        /* Center align the steps */
    }

    .step {
        flex: 1 1 100%;
        /* Stack the steps on mobile */
        margin-bottom: 20px;
        /* Space between steps */
    }

    .step-icon {
        font-size: 40px;
        /* Adjust icon size for mobile */
    }

    h3 {
        font-size: 16px;
        /* Adjust heading size for mobile */
    }

    p {
        font-size: 12px;
        /* Adjust paragraph size for mobile */
    }
}


.step-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fdd835;
}

.step p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}




.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Add gap for spacing */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.logo-section {
    max-width: 300px;

}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.logo svg {
    width: 24px;
    height: 24px;
    fill: #6172F3;
    margin-right: 10px;
}

.logo-text {
    color: #6172F3;
    font-size: 24px;
    font-weight: bold;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f0f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: #3498db;
}

.services {
    /* padding: 0 20px; */
   
}

.services h2 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 20px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin-bottom: 12px;
}

.services a {
    color: #666;
    text-decoration: none;
}

.contact {
    text-align: left;
    
}

.contact h2 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 20px;
}

.phone {
    color: #3498db;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.email {
    color: #666;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.address {
    color: #666;
    line-height: 1.6;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: start;
        text-align: start;
    }

    .logo-section, .services, .contact {
        max-width: 100%;
        flex: none; /* Reset flex for stacking */
        text-align: start;
    }

    .social-icons {
        justify-content: start;
        margin-bottom: 20px;
    }

    .services h2, .contact h2 {
        font-size: 18px;
    }

    .phone {
        font-size: 20px;
    }

    .description, .address {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .phone {
        font-size: 18px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .services h2, .contact h2 {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
    }
}



li,
ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.sec-title {
    position: relative;
    padding-bottom: 10px
}

.sec-title .title {
    position: relative;
    color: #0076AE;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize
}

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbb
}

.sec-title h2 {
    position: relative;
    color: #252525;
    /* font-size: 36px; */
    font-weight: 700;
    line-height: 1.5em;
    display: block
}

.sec-title.light h2 {
    color: #fff
}

.contact-page-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 55px;
    font-family: var(--bs-font-sans-serif) !important;
}

.contact-page-section .inner-container {
    position: relative;
    z-index: 1;
    background-color: #0076AE;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .1)
}

.contact-page-section .form-column {
    position: relative;
    padding: 0 0 0 15px
}

.contact-page-section .form-column .inner-column {
    position: relative;
    padding: 60px 45px 30px;
    background-color: #fff
}

.contact-page-section .info-column {
    position: relative
}

.contact-page-section .info-column .inner-column {
    position: relative;
    padding: 60px 35px
}

.contact-page-section .info-column h2 {
    position: relative;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 45px
}

.contact-page-section .info-column .list-info {
    position: relative;
    margin-bottom: 60px
}

.contact-page-section .info-column .list-info li {
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
    color: #fff;
    line-height: 1.8em;
    padding-left: 45px
}

.contact-page-section .info-column .list-info li:last-child {
    margin-bottom: 0
}

.contact-page-section .info-column .list-info li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: #fff;
    font-size: 30px
}

.contact-form {
    position: relative
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #222;
    font-size: 14px;
    line-height: 38px;
    padding: 10px 30px;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: all .3s ease;
    -ms-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
    border-color: #0076AE
}

.contact-form textarea {
    height: 250px;
    resize: none
}

.contact-form .theme-btn {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: capitalize;
    padding: 16px 39px;
    border: 2px solid #0076AE;
    font-family: Arimo, sans-serif;
    background: #0076AE;
    display: inline-block;
    position: relative;
    line-height: 24px;
    cursor: pointer;
    color: #fff
}

.contact-form .theme-btn:hover {
    color: #0076AE;
    border-color: #0076AE;
    background: 0 0
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: red !important
}

.contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    color: red;
    font-weight: 500
}

.social-icon-four {
    position: relative
}

.social-icon-four li {
    position: relative;
    margin-right: 18px;
    display: inline-block
}

.social-icon-four li.follow {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    display: block;
    margin-bottom: 20px
}

.social-icon-four li a {
    position: relative;
    font-size: 20px;
    color: #fff;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

.social-icon-four li a:hover {
    color: #222
}



.about-section{
	position:relative;
	padding:52px 0px;
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top: 120px;
	/* padding-right:100px; */
}
@media (max-width: 768px) {
    .about-section .content-column .inner-column {
      padding-top: 0px;
    }
  }

.about-section .content-column .text{
	position:relative;
	color:#777777;
	font-size:15px;
	line-height:2em;
	margin-bottom:40px;
}

.about-section .content-column .email{
	position:relative;
	color:#252525;
	font-weight:700;
	margin-bottom:50px;
}

.about-section .image-column{
	position:relative;
	margin-bottom:50px;
}

.about-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:2px solid #ffc107;
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	background:url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#252525;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:#d7a449;
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}
.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}
.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #d7a449;
}
.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #d7a449;
    font-family: 'Arimo', sans-serif;
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 0px;
}
.sec-title .title {
    position: relative;
    color: #d7a449;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}









/* About Us */

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #BB191E;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #3498db;
            transform: translateY(-3px);
        }



        
