← Kapat
main.css
/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--heading-font: "Raleway", sans-serif;
--nav-font: "Poppins", sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #ffffff; /* Background color for the entire website, including individual sections */
--default-color: #444444; /* Default color used for the majority of the text content across the entire website */
--heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
--accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
--contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
--nav-color: rgba(
255,
255,
255,
0.905
); /* The default color of the main navmenu links */
--nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
--nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
--nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
--background-color: #f9f9f9;
--surface-color: #ffffff;
}
.dark-background {
--background-color: #060606;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #252525;
--contrast-color: #2a2727;
}
/* Smooth scroll */
:root {
scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
color: var(--default-color);
background-color: var(--background-color);
font-family: var(--default-font);
}
a {
color: var(--accent-color);
text-decoration: none;
transition: 0.3s;
}
a:hover {
color: color-mix(in srgb, var(--accent-color), transparent 25%);
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
--background-color: rgba(0, 0, 0, 0.8);
--heading-color: #ffffff;
--contrast-color: #ffffff;
color: var(--default-color);
background-color: var(--background-color);
padding: 10px 0;
transition: all 0.5s;
z-index: 997;
}
.header .logo {
line-height: 1;
}
.header .logo img {
max-height: 36px;
margin-right: 8px;
}
.header .logo h1 {
font-size: 32px;
margin: 0;
font-weight: 700;
color: var(--heading-color);
}
.header .logo span {
color: var(--accent-color);
font-size: 32px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
color: var(--contrast-color);
font-size: 14px;
padding: 8px 30px;
margin: 0 0 0 30px;
border-radius: 4px;
transition: 0.3s;
border: 2px solid var(--accent-color);
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
color: var(--default-color);
background: var(--accent-color);
}
@media (max-width: 1200px) {
.header .logo {
order: 1;
}
.header .btn-getstarted {
order: 2;
margin: 0 15px 0 0;
padding: 6px 15px;
}
.header .navmenu {
order: 3;
}
}
.scrolled .header {
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Index Page Header
------------------------------*/
.index-page .header {
--background-color: rgba(0, 0, 0, 0);
}
/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
--background-color: rgba(0, 0, 0, 0.8);
}
/* Non-home header positioning */
body:not(.index-page) #header {
position: relative;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
.navmenu {
padding: 0;
}
.navmenu ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}
.navmenu li {
position: relative;
}
.navmenu a,
.navmenu a:focus {
color: var(--nav-color);
padding: 18px 15px;
font-size: 16px;
font-family: var(--nav-font);
font-weight: 400;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
transition: 0.3s;
}
.navmenu li:last-child a {
padding-right: 0;
}
.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
color: var(--nav-hover-color);
}
.navmenu .dropdown ul {
margin: 0;
padding: 10px 0;
background: var(--nav-dropdown-background-color);
display: block;
position: absolute;
visibility: hidden;
left: 14px;
top: 130%;
opacity: 0;
transition: 0.3s;
border-radius: 0;
z-index: 99;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown ul li {
min-width: 200px;
}
.navmenu .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
color: var(--nav-dropdown-color);
}
.navmenu .dropdown ul a i {
font-size: 12px;
}
.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
background-color: var(--nav-dropdown-hover-color);
}
.navmenu .dropdown:hover > ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navmenu .dropdown .dropdown ul {
top: 0;
left: -90%;
visibility: hidden;
}
.navmenu .dropdown .dropdown:hover > ul {
opacity: 1;
top: 0;
left: -100%;
visibility: visible;
}
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
.mobile-nav-toggle {
color: var(--nav-color);
font-size: 28px;
line-height: 0;
margin-right: 10px;
cursor: pointer;
transition: color 0.3s;
}
.navmenu {
padding: 0;
z-index: 9997;
}
.navmenu ul {
display: none;
list-style: none;
position: absolute;
inset: 60px 20px 20px 20px;
padding: 10px 0;
margin: 0;
border-radius: 6px;
background-color: var(--nav-mobile-background-color);
overflow-y: auto;
transition: 0.3s;
z-index: 9998;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu a,
.navmenu a:focus {
color: var(--nav-dropdown-color);
padding: 10px 20px;
font-family: var(--nav-font);
font-size: 17px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: 0.3s;
background-color: color-mix(in srgb, var(--accent-color), white 90%);
}
.navmenu a i:hover,
.navmenu a:focus i:hover {
background-color: color-mix(in srgb, var(--accent-color), white 90%);
}
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
background-color: var(--nav-dropdown-hover-color);
}
.navmenu .active i,
.navmenu .active:focus i {
transform: rotate(180deg);
}
.navmenu .dropdown ul {
position: static;
display: none;
z-index: 99;
padding: 10px 0;
margin: 10px 20px;
background-color: var(--nav-dropdown-background-color);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
box-shadow: none;
transition: all 0.5s ease-in-out;
}
.navmenu .dropdown ul ul {
background-color: rgba(33, 37, 41, 0.1);
}
.navmenu .dropdown > .dropdown-active {
display: block;
background-color: rgba(33, 37, 41, 0.03);
}
.mobile-nav-active {
overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
color: #fff;
position: absolute;
font-size: 32px;
top: 15px;
right: 15px;
margin-right: 0;
z-index: 9999;
}
.mobile-nav-active .navmenu {
position: fixed;
overflow: hidden;
inset: 0;
background: rgba(33, 37, 41, 0.8);
transition: 0.3s;
}
.mobile-nav-active .navmenu > ul {
display: block;
height: fit-content;
}
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
color: var(--default-color);
background-color: var(--background-color);
font-size: 14px;
position: relative;
}
.footer .footer-top {
padding: 50px 0;
background-color: color-mix(
in srgb,
var(--footer-background-color) 90%,
white 10%
);
}
.footer .footer-about .logo {
line-height: 1;
margin-bottom: 10px;
}
.footer .footer-about .logo img {
max-height: 40px;
margin-right: 6px;
}
.footer .footer-about .logo span {
font-size: 26px;
font-weight: 700;
letter-spacing: 1px;
font-family: var(--heading-font);
color: var(--heading-color);
}
.footer .footer-about p {
font-size: 14px;
font-family: var(--heading-font);
}
.footer .social-links a {
color: color-mix(in srgb, var(--default-color), transparent 30%);
background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 4px;
font-size: 16px;
margin-right: 10px;
transition: 0.3s;
}
.footer .social-links a:hover {
color: var(--contrast-color);
background-color: var(--accent-color);
}
.footer h4 {
font-size: 16px;
font-weight: bold;
position: relative;
padding-bottom: 12px;
}
.footer .footer-links {
margin-bottom: 30px;
}
.footer .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer .footer-links ul i {
margin-right: 4px;
font-size: 12px;
line-height: 0;
color: var(--accent-color);
}
.footer .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
.footer .footer-links ul li:first-child {
padding-top: 0;
}
.footer .footer-links ul a {
color: color-mix(in srgb, var(--default-color), transparent 30%);
display: inline-block;
line-height: 1;
}
.footer .footer-links ul a:hover {
color: var(--accent-color);
}
.footer .footer-contact p {
margin-bottom: 5px;
}
.footer .footer-newsletter .newsletter-form {
margin-top: 30px;
margin-bottom: 15px;
padding: 6px 8px;
position: relative;
border-radius: 4px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
display: flex;
background-color: color-mix(
in srgb,
var(--footer-background-color) 90%,
white 15%
);
transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form:focus-within {
border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type="email"],
.footer .footer-newsletter .newsletter-form input[type="tel"] {
border: 0;
padding: 4px;
width: 100%;
background-color: color-mix(
in srgb,
var(--footer-background-color) 90%,
white 15%
);
color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible,
.footer .footer-newsletter .newsletter-form input[type="tel"]:focus-visible {
outline: none;
}
.footer .footer-newsletter .newsletter-form input[type="submit"],
.footer .footer-newsletter .newsletter-form button {
border: 0;
font-size: 16px;
padding: 0 20px;
margin: -7px -8px -7px 0;
background: var(--accent-color);
color: var(--contrast-color);
transition: 0.3s;
border-radius: 0 4px 4px 0;
cursor: pointer;
}
.footer .footer-newsletter .newsletter-form input[type="submit"]:hover,
.footer .footer-newsletter .newsletter-form button:hover {
background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
padding: 30px 0;
}
.footer .copyright p {
margin-bottom: 0;
}
.footer .credits {
margin-top: 5px;
font-size: 13px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 999999;
overflow: hidden;
background: #000;
transition: all 0.6s ease-out;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #ffffff;
border-color: var(--accent-color) transparent var(--accent-color) transparent;
border-radius: 50%;
width: 60px;
height: 60px;
animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Bottom Widgets (Scroll Top + Contact Widget)
--------------------------------------------------------------*/
.bottom-widgets {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 99998;
display: flex;
align-items: flex-end;
gap: 10px;
}
/* Scroll Top Button */
.scroll-top {
width: 64px;
height: 64px;
position: static;
visibility: hidden;
opacity: 0;
background-color: var(--accent-color);
border-radius: 4px;
transition: all 0.4s;
}
.scroll-top i {
font-size: 24px;
color: var(--contrast-color);
line-height: 0;
}
.scroll-top:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
color: var(--contrast-color);
}
.scroll-top.active {
visibility: visible;
opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
color: var(--default-color);
background-color: var(--background-color);
position: relative;
}
.page-title .heading {
padding: 80px 0;
border-top: 1px solid
color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
font-size: 38px;
font-weight: 700;
}
.page-title nav {
background-color: color-mix(in srgb, var(--default-color), transparent 95%);
padding: 20px 0;
}
.page-title nav ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
font-size: 16px;
font-weight: 400;
}
.page-title nav ol li + li {
padding-left: 10px;
}
.page-title nav ol li + li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
color: var(--default-color);
background-color: var(--background-color);
padding: 60px 0;
scroll-margin-top: 80px;
overflow: clip;
}
@media (max-width: 1199px) {
section,
.section {
scroll-margin-top: 58px;
}
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
padding-bottom: 60px;
position: relative;
}
.section-title h2 {
font-size: 14px;
font-weight: 500;
padding: 0;
line-height: 1px;
margin: 0;
letter-spacing: 1.5px;
text-transform: uppercase;
color: color-mix(in srgb, var(--default-color), transparent 50%);
position: relative;
}
.section-title h2::after {
content: "";
width: 120px;
height: 1px;
display: inline-block;
background: var(--accent-color);
margin: 4px 10px;
}
.section-title p {
color: var(--heading-color);
margin: 0;
font-size: 36px;
font-weight: 700;
text-transform: uppercase;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
width: 100%;
min-height: 100vh;
position: relative;
padding: 120px 0 80px 0;
display: flex;
align-items: center;
justify-content: center;
}
.hero img {
position: absolute;
inset: 0;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.hero:before {
content: "";
background: color-mix(in srgb, var(--background-color), transparent 30%);
position: absolute;
inset: 0;
z-index: 2;
}
.hero .container {
position: relative;
z-index: 3;
}
.hero h2 {
margin: 0;
font-size: 56px;
font-weight: 700;
font-family: var(--nav-font);
}
.hero h2 span {
color: var(--accent-color);
}
.hero p {
margin: 10px 0 0 0;
font-size: 24px;
color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.hero .icon-box {
padding: 30px 20px;
transition: ease-in-out 0.3s;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
height: 100%;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.hero .icon-box i {
font-size: 32px;
line-height: 1;
color: var(--accent-color);
}
.hero .icon-box h3 {
font-weight: 700;
margin: 10px 0 0 0;
padding: 0;
line-height: 1;
font-size: 20px;
line-height: 26px;
}
@media (max-width: 575px) {
.hero .icon-box i {
font-size: 25px;
}
.hero .icon-box h3 {
font-size: 12px;
line-height: unset;
}
}
.hero .icon-box h3 a {
color: color-mix(in srgb, var(--default-color), transparent 20%);
transition: ease-in-out 0.3s;
}
.hero .icon-box:hover {
border-color: var(--accent-color);
}
.hero .icon-box:hover h3 {
color: var(--accent-color);
}
@media (max-width: 768px) {
.hero h2 {
font-size: 32px;
}
.hero p {
font-size: 18px;
}
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
font-size: 1.75rem;
font-weight: 700;
}
.about .content .fst-italic {
color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}
.about .content ul {
list-style: none;
padding: 0;
}
.about .content ul li {
padding: 10px 0 0 0;
display: flex;
}
.about .content ul i {
color: var(--accent-color);
margin-right: 0.5rem;
line-height: 1.2;
font-size: 1.25rem;
}
.about .content p:last-child {
margin-bottom: 0;
}
.about-highlight-wrapper {
/*background: color-mix(in srgb, var(--accent-color), transparent 88%);*/
border-radius: 2rem;
margin-inline: auto;
}
.about-highlight {
max-width: 960px;
}
.about-highlight .lead {
color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.about-highlight-list .about-highlight-item {
background: var(--surface-color);
border-radius: 999px;
padding: 1rem 1.25rem;
box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}
.about-highlight-list .about-highlight-item i {
color: var(--accent-color);
font-size: 1.35rem;
line-height: 1;
}
.about-highlight-list .about-highlight-item span {
font-weight: 500;
}
@media (max-width: 575.98px) {
.about-highlight-list .about-highlight-item {
border-radius: 1rem;
}
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
opacity: 0.5;
transition: 0.3s;
filter: grayscale(100);
}
.clients .swiper-slide img:hover {
filter: none;
opacity: 1;
}
.clients .swiper-wrapper {
height: auto;
}
.clients .swiper-pagination {
margin-top: 20px;
position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
opacity: 1;
background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
position: relative;
min-height: 400px;
}
.features .features-image img {
position: absolute;
inset: 0;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.features .features-item h4 {
font-size: 20px;
font-weight: 700;
margin: 0 0 5px 0;
}
.features .features-item i {
font-size: 48px;
color: var(--accent-color);
margin-right: 20px;
line-height: 0;
}
.features .features-item p {
font-size: 15px;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin: 0;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
background-color: var(--surface-color);
text-align: center;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
padding: 40px 20px;
height: 100%;
transition: all ease-in-out 0.3s;
}
.services .service-item .icon {
background: var(--accent-color);
color: var(--contrast-color);
margin: 0 auto;
width: 64px;
height: 64px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: 0.3s;
}
.services .service-item .icon i {
font-size: 28px;
transition: ease-in-out 0.3s;
}
.services .service-item h3 {
font-weight: 700;
margin: 10px 0 15px 0;
font-size: 22px;
transition: 0.3s;
}
.services .service-item p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}
.services .service-item:hover {
box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
padding: 80px 0;
position: relative;
clip-path: inset(0);
}
.call-to-action img {
position: fixed;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.call-to-action:before {
content: "";
background: color-mix(in srgb, var(--background-color), transparent 50%);
position: absolute;
inset: 0;
z-index: 2;
}
.call-to-action .container {
position: relative;
z-index: 3;
}
.call-to-action h3 {
font-size: 28px;
font-weight: 700;
color: var(--default-color);
}
.call-to-action p {
color: var(--default-color);
}
.call-to-action .cta-btn {
font-family: var(--heading-font);
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 40px;
border-radius: 5px;
transition: 0.5s;
margin: 10px;
border: 2px solid var(--default-color);
color: var(--default-color);
}
.call-to-action .cta-btn:hover {
background: var(--accent-color);
color: var(--background-color);
border: 2px solid var(--accent-color);
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
padding: 0;
margin: 0 auto 20px auto;
list-style: none;
text-align: center;
}
.portfolio .portfolio-filters li {
cursor: pointer;
display: inline-block;
padding: 8px 20px 10px 20px;
margin: 0;
font-size: 15px;
font-weight: 500;
line-height: 1;
margin-bottom: 5px;
border-radius: 4px;
transition: all 0.3s ease-in-out;
font-family: var(--heading-font);
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
color: var(--contrast-color);
background-color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
margin-right: 0;
}
@media (max-width: 575px) {
.services .service-item {
padding: 30px 20px;
}
.portfolio .portfolio-filters li {
font-size: 14px;
margin: 0 0 10px 0;
}
.portfolio .portfolio-item .portfolio-info .details-link {
top: unset !important;
bottom: 5px;
right: 2px !important;
}
}
.portfolio .portfolio-item {
position: relative;
overflow: hidden;
}
.portfolio .portfolio-item .portfolio-info {
opacity: 0;
position: absolute;
left: 12px;
right: 12px;
bottom: -100%;
z-index: 3;
transition: all ease-in-out 0.5s;
background: color-mix(in srgb, var(--background-color), transparent 10%);
padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
font-size: 18px;
font-weight: 600;
}
.portfolio .portfolio-item .portfolio-info p {
color: color-mix(in srgb, var(--default-color), transparent 30%);
font-size: 14px;
margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .details-link {
position: absolute;
top: 18px;
right: 18px;
width: 46px;
height: 46px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
background: color-mix(in srgb, var(--background-color), transparent 5%);
color: var(--heading-color);
font-size: 22px;
line-height: 1;
transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
border-color 0.3s ease;
box-shadow: 0 12px 30px
color-mix(in srgb, var(--default-color), transparent 80%);
}
.portfolio .portfolio-item .portfolio-info .details-link:hover {
background: var(--accent-color);
color: var(--contrast-color);
border-color: var(--accent-color);
transform: translateY(-2px) scale(1.05);
}
.portfolio .portfolio-item:hover .portfolio-info {
opacity: 1;
bottom: 0;
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
padding: 10px;
}
.stats .stats-item i {
font-size: 44px;
color: var(--accent-color);
line-height: 0;
margin-right: 15px;
}
.stats .stats-item .purecounter {
color: var(--heading-color);
font-size: 40px;
display: block;
font-weight: 700;
line-height: 40px;
}
.stats .stats-item p {
color: color-mix(in srgb, var(--default-color), transparent 40%);
padding: 15px 0 0 0;
margin: 0;
font-family: var(--heading-font);
font-size: 14px;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
padding: 80px 0;
position: relative;
}
.testimonials:before {
content: "";
background: color-mix(in srgb, var(--background-color), transparent 30%);
position: absolute;
inset: 0;
z-index: 2;
}
.testimonials .testimonials-bg {
position: absolute;
inset: 0;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.testimonials .container {
position: relative;
z-index: 3;
}
.testimonials .testimonial-item {
text-align: center;
padding: 32px 36px 28px;
}
.testimonials .testimonial-item p {
font-style: italic;
line-height: 1.7;
margin: 0 auto 20px auto;
color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.testimonial-item p {
font-size: 1.4rem;
}
.testimonials .testimonial-item .quote-text {
display: block;
position: relative;
margin: 0 auto;
padding: 34px 48px 0;
max-width: 560px;
}
.testimonials .testimonial-item .quote-text .quote-icon-left,
.testimonials .testimonial-item .quote-text .quote-icon-right {
color: color-mix(in srgb, var(--default-color), transparent 35%);
font-size: 38px;
line-height: 0;
position: absolute;
top: 0;
pointer-events: none;
}
.testimonials .testimonial-item .quote-text .quote-icon-left {
left: 0;
}
.testimonials .testimonial-item .quote-text .quote-icon-right {
right: 0;
transform: scale(-1, -1);
}
.testimonials .testimonial-item .testimonial-author {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
font-style: normal;
font-weight: 600;
color: var(--heading-color);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.testimonials .testimonial-item .testimonial-author::before,
.testimonials .testimonial-item .testimonial-author::after {
content: "";
display: inline-block;
width: 32px;
height: 1px;
background-color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.testimonials .swiper-wrapper {
height: auto;
}
.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: color-mix(in srgb, var(--default-color), transparent 50%);
opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--default-color);
opacity: 1;
}
@media (min-width: 992px) {
.testimonials .testimonial-item p {
width: 80%;
}
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
margin-top: 40px;
}
@media (min-width: 768px) {
.contact .info-item + .info-item {
margin-top: 0;
}
}
.contact .info-item i {
color: var(--contrast-color);
background: var(--accent-color);
font-size: 20px;
width: 44px;
height: 44px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 4px;
transition: all 0.3s ease-in-out;
margin-right: 15px;
}
.contact .info-item h3 {
padding: 0;
font-size: 18px;
font-weight: 700;
margin-bottom: 5px;
}
.contact .info-item p {
padding: 0;
margin-bottom: 0;
font-size: 14px;
}
.contact-info-grid .info-item {
background: var(--surface-color);
border-radius: 18px;
padding: 22px;
box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-grid .info-item:hover {
transform: translateY(-6px);
box-shadow: 0 25px 65px rgba(0, 0, 0, 0.08);
}
.contact-right-panel {
background: var(--surface-color);
border-radius: 24px;
padding: 32px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
height: 100%;
display: flex;
flex-direction: column;
gap: 24px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.contact-right-header h3 {
font-size: 28px;
margin: 12px 0;
}
.contact-right-header p {
color: color-mix(in srgb, var(--default-color), transparent 30%);
margin-bottom: 0;
}
.contact-badge {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--contrast-color);
background: color-mix(in srgb, var(--accent-color), transparent 20%);
padding: 6px 14px;
border-radius: 999px;
}
.contact-steps .contact-step {
background: color-mix(in srgb, var(--accent-color), transparent 90%);
border-radius: 18px;
padding: 18px;
height: 100%;
border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
}
.contact-step h4 {
font-size: 16px;
margin: 12px 0 6px;
}
.contact-step p {
font-size: 14px;
margin-bottom: 0;
color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.step-number {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
color: var(--accent-color);
}
.contact-cta {
background: var(--contrast-color);
color: #fff;
border-radius: 20px;
padding: 24px;
display: flex;
gap: 24px;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.contact-cta h4 {
color: #fff;
margin-bottom: 8px;
}
.contact-cta p {
margin-bottom: 12px;
color: rgba(255, 255, 255, 0.85);
}
.contact-highlights {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
gap: 12px 24px;
}
.contact-highlights li {
display: flex;
align-items: center;
font-size: 14px;
color: rgba(255, 255, 255, 0.9);
gap: 8px;
}
.contact-highlights i {
color: var(--accent-color);
font-size: 16px;
}
.contact-cta-actions {
display: flex;
flex-direction: column;
gap: 12px;
min-width: 190px;
}
.contact-btn {
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 999px;
padding: 10px 24px;
font-weight: 600;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 0.06em;
transition: 0.3s ease;
}
.contact-btn.primary {
background: var(--accent-color);
color: var(--contrast-color);
}
.contact-btn.primary:hover {
filter: brightness(1.05);
}
.contact-btn.ghost {
border: 1px solid rgba(255, 255, 255, 0.4);
color: #fff;
}
.contact-btn.ghost:hover {
border-color: var(--accent-color);
color: var(--accent-color);
}
@media (max-width: 991px) {
.contact-right-panel {
padding: 24px;
}
.contact-cta {
flex-direction: column;
align-items: flex-start;
}
.contact-cta-actions {
width: 100%;
}
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
margin-top: 20px;
position: relative;
}
.portfolio-details
.portfolio-details-slider
.swiper-pagination
.swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: color-mix(in srgb, var(--default-color), transparent 85%);
opacity: 1;
}
.portfolio-details
.portfolio-details-slider
.swiper-pagination
.swiper-pagination-bullet-active {
background-color: var(--accent-color);
}
.portfolio-details .portfolio-info {
background-color: var(--surface-color);
padding: 30px;
box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.portfolio-details .portfolio-info h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid
color-mix(in srgb, var(--default-color), transparent 85%);
}
.portfolio-details .portfolio-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
margin-top: 10px;
}
.portfolio-details .portfolio-description {
padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
padding: 0;
color: color-mix(in srgb, var(--default-color), transparent 30%);
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
background-color: var(--surface-color);
padding: 20px;
box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
margin-top: 30px;
}
.service-details .service-box h4 {
font-size: 20px;
font-weight: 700;
border-bottom: 2px solid
color-mix(in srgb, var(--default-color), transparent 92%);
padding-bottom: 15px;
margin-bottom: 15px;
}
.service-details .services-list {
background-color: var(--surface-color);
}
.service-details .services-list a {
color: color-mix(in srgb, var(--default-color), transparent 20%);
background-color: color-mix(in srgb, var(--default-color), transparent 96%);
display: flex;
align-items: center;
padding: 12px 15px;
margin-top: 15px;
transition: 0.3s;
}
.service-details .services-list a:first-child {
margin-top: 0;
}
.service-details .services-list a i {
font-size: 16px;
margin-right: 8px;
color: var(--accent-color);
}
.service-details .services-list a.active {
color: var(--contrast-color);
background-color: var(--accent-color);
}
.service-details .services-list a.active i {
color: var(--contrast-color);
}
.service-details .services-list a:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
color: var(--accent-color);
}
.service-details .download-catalog a {
color: var(--default-color);
display: flex;
align-items: center;
padding: 10px 0;
transition: 0.3s;
border-top: 1px solid
color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
border-top: 0;
padding-top: 0;
}
.service-details .download-catalog a:last-child {
padding-bottom: 0;
}
.service-details .download-catalog a i {
font-size: 24px;
margin-right: 8px;
color: var(--accent-color);
}
.service-details .download-catalog a:hover {
color: var(--accent-color);
}
.service-details .help-box {
background-color: var(--accent-color);
color: var(--contrast-color);
margin-top: 30px;
padding: 30px 15px;
}
.service-details .help-box .help-icon {
font-size: 48px;
}
.service-details .help-box h4,
.service-details .help-box a {
color: var(--contrast-color);
}
.service-details .services-img {
margin-bottom: 20px;
}
.service-details h3 {
font-size: 26px;
font-weight: 700;
}
.service-details p {
font-size: 15px;
}
.service-details ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.service-details ul li {
padding: 5px 0;
display: flex;
align-items: center;
}
.service-details ul i {
font-size: 20px;
margin-right: 8px;
color: var(--accent-color);
}
/*--------------------------------------------------------------
# Referans Kampanyası Popup
--------------------------------------------------------------*/
.reference-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
display: none;
align-items: center;
justify-content: center;
animation: fadeIn 0.3s ease-in-out;
}
.reference-popup.active {
display: flex;
}
.popup-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(5px);
}
.popup-content {
position: relative;
background: rgba(30, 30, 30, 0.95);
border-radius: 16px;
max-width: 600px;
width: 90%;
padding: 40px 35px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
animation: slideUp 0.4s ease-out;
z-index: 1;
}
.popup-close {
position: absolute;
top: 15px;
right: 15px;
background: transparent;
border: none;
color: #ffffff;
font-size: 32px;
line-height: 1;
cursor: pointer;
padding: 5px 10px;
transition: all 0.3s;
opacity: 0.7;
}
.popup-close:hover {
opacity: 1;
transform: rotate(90deg);
}
.popup-logo {
text-align: center;
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 2px solid rgba(255, 196, 81, 0.3);
}
.popup-logo h2 {
color: var(--accent-color);
font-size: 32px;
font-weight: 700;
margin: 0;
letter-spacing: 1px;
}
.popup-body {
color: #ffffff;
text-align: center;
}
.popup-body h3 {
color: #ffffff;
font-size: 26px;
margin-bottom: 20px;
font-weight: 600;
line-height: 1.3;
}
.popup-body p {
font-size: 16px;
line-height: 1.7;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.9);
}
.popup-body strong {
color: var(--accent-color);
font-weight: 600;
}
.popup-highlight {
font-size: 17px;
font-weight: 600;
margin: 25px 0 30px;
padding: 18px 24px;
background: linear-gradient(
135deg,
rgba(255, 196, 81, 0.15) 0%,
rgba(255, 196, 81, 0.05) 100%
);
border-radius: 12px;
border: 2px solid rgba(255, 196, 81, 0.3);
box-shadow: 0 4px 15px rgba(255, 196, 81, 0.15);
position: relative;
overflow: hidden;
}
.popup-highlight::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(
180deg,
var(--accent-color) 0%,
rgba(255, 196, 81, 0.5) 100%
);
}
.popup-highlight::after {
content: "✨";
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 24px;
opacity: 0.6;
}
.popup-buttons {
display: flex;
flex-direction: column;
gap: 12px;
margin: 30px 0 20px;
}
.popup-btn {
display: inline-block;
padding: 14px 25px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
border: 2px solid transparent;
text-align: center;
}
.popup-btn-primary {
background: var(--accent-color);
color: #1e1e1e;
border-color: var(--accent-color);
}
.popup-btn-primary:hover {
background: transparent;
color: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 196, 81, 0.3);
}
.popup-btn-secondary {
background: transparent;
color: #ffffff;
border-color: rgba(255, 255, 255, 0.3);
}
.popup-btn-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffffff;
color: #ffffff;
transform: translateY(-2px);
}
.popup-btn-tertiary {
background: transparent;
color: rgba(255, 255, 255, 0.8);
border-color: rgba(255, 255, 255, 0.2);
}
.popup-btn-tertiary:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.4);
color: #ffffff;
transform: translateY(-2px);
}
.popup-later {
display: block;
width: 100%;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.5);
font-size: 14px;
padding: 10px;
cursor: pointer;
transition: all 0.3s;
margin-top: 10px;
}
.popup-later:hover {
color: rgba(255, 255, 255, 0.8);
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 768px) {
.popup-content {
padding: 30px 25px;
max-width: 95%;
}
.popup-logo h2 {
font-size: 26px;
}
.popup-body h3 {
font-size: 22px;
}
.popup-body p {
font-size: 15px;
}
.popup-btn {
padding: 12px 20px;
font-size: 15px;
}
}
@media (max-width: 480px) {
.popup-content {
padding: 25px 20px;
}
.popup-logo h2 {
font-size: 24px;
}
.popup-body h3 {
font-size: 20px;
}
.popup-close {
font-size: 28px;
}
}
/*--------------------------------------------------------------
# İletişim Widget
--------------------------------------------------------------*/
.contact-widget {
position: static;
font-family: var(--default-font);
}
.contact-widget-button {
position: relative;
width: 64px;
height: 64px;
background: #008749;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 4px 20px rgba(0, 135, 73, 0.4);
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
overflow: visible;
}
.contact-widget-button::after {
content: "";
position: absolute;
top: 4px;
right: 4px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #45ff96;
box-shadow: 0 0 0 0 rgba(69, 255, 150, 0.6);
border: 2px solid #ffffff;
animation: notifyPulse 2s infinite;
transition: opacity 0.2s ease, transform 0.2s ease;
opacity: 0;
transform: scale(0.5);
}
.contact-widget.has-notification .contact-widget-button::after {
opacity: 1;
transform: scale(1);
}
.contact-widget.active .contact-widget-button::after {
opacity: 0;
transform: scale(0.4);
animation: none;
}
@keyframes notifyPulse {
0% {
box-shadow: 0 0 0 0 rgba(69, 255, 150, 0.6);
}
70% {
box-shadow: 0 0 0 8px rgba(69, 255, 150, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(69, 255, 150, 0);
}
}
.contact-widget-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 30px rgba(0, 135, 73, 0.6);
}
.widget-icon {
position: relative;
width: 32px;
height: 32px;
color: #ffffff;
z-index: 1;
}
.widget-icon svg {
width: 100%;
height: 100%;
transition: all 0.3s ease;
}
.icon-message {
opacity: 1;
}
.icon-close {
position: absolute;
top: 0;
left: 0;
opacity: 0;
transform: rotate(-90deg);
}
.contact-widget.active .icon-message {
opacity: 0;
transform: rotate(90deg);
}
.contact-widget.active .icon-close {
opacity: 1;
transform: rotate(0deg);
}
.contact-widget-menu {
position: absolute;
bottom: 75px;
right: 0;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
opacity: 0;
visibility: hidden;
transform: translateY(20px) scale(0.9);
transition: all 0.3s ease;
max-height: 85vh;
width: 320px;
overflow-y: auto;
}
.contact-widget.active .contact-widget-menu {
opacity: 1;
visibility: visible;
text-align: center;
transform: translateY(0) scale(1);
}
/* Kampanya İçeriği */
.campaign-content {
padding: 25px 20px;
padding-bottom: 0;
border-top: 1px solid #f0f0f0;
position: relative;
}
.contact-widget-menu.show-campaign .contact-list {
display: none;
}
.contact-widget-menu.show-campaign .campaign-content {
display: block;
}
.campaign-logo {
text-align: center;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 2px solid rgb(255 196 81 / 80%);
}
.campaign-logo h2 {
color: #008749;
font-size: 24px;
font-weight: 700;
margin: 0;
letter-spacing: 0.5px;
}
.campaign-body {
color: #333;
text-align: center;
}
.campaign-body h3 {
color: #2a2a2a;
font-size: 20px;
margin-bottom: 15px;
font-weight: 600;
line-height: 1.3;
}
.campaign-body p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 12px;
color: #555;
}
.campaign-body strong {
color: #008749;
font-weight: 600;
}
.campaign-highlight {
font-size: 14px;
font-weight: 600;
margin: 20px 0 25px;
padding: 14px 18px;
background: linear-gradient(
135deg,
rgba(0, 135, 73, 0.12) 0%,
rgba(0, 135, 73, 0.05) 100%
);
border-radius: 10px;
border: 2px solid rgba(0, 135, 73, 0.25);
box-shadow: 0 3px 12px rgba(0, 135, 73, 0.1);
position: relative;
overflow: hidden;
padding-left: 22px;
}
.campaign-highlight::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, #008749 0%, rgba(0, 135, 73, 0.5) 100%);
}
.campaign-highlight::after {
content: "✨";
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
opacity: 0.7;
}
.campaign-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin: 20px 0 10px;
}
.campaign-btn {
display: inline-block;
padding: 12px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
border: 2px solid transparent;
text-align: center;
}
.campaign-btn-primary {
background: #008749;
color: #ffffff;
border-color: #008749;
}
.campaign-btn-primary:hover {
background: #006638;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 135, 73, 0.3);
}
.campaign-btn-secondary {
background: transparent;
color: #008749;
border-color: #008749;
}
.campaign-btn-secondary:hover {
background: rgba(0, 135, 73, 0.1);
color: #008749;
transform: translateY(-2px);
}
.campaign-btn-tertiary {
background: transparent;
color: #666;
border-color: #ddd;
}
.campaign-btn-tertiary:hover {
background: #f8f8f8;
border-color: #bbb;
color: #333;
transform: translateY(-2px);
}
.contact-list {
display: inline-flex;
list-style: none;
align-items: center;
padding: 8px;
margin: 0;
}
.contact-item {
margin-bottom: 5px;
}
.contact-item:last-child {
margin-bottom: 0;
}
.contact-item a {
display: flex;
align-items: center;
padding: 12px 15px;
border-radius: 8px;
text-decoration: none;
color: #2a2a2a;
transition: all 0.3s ease;
gap: 12px;
flex-direction: column;
text-align: center;
}
.contact-item a:hover {
background: #f5f5f5;
transform: translateX(-3px);
}
.contact-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.3s ease;
}
.contact-icon svg {
width: 20px;
height: 20px;
color: #ffffff;
}
.contact-item a:hover .contact-icon {
transform: scale(1.15);
}
.contact-label {
font-size: 15px;
font-weight: 500;
color: #2a2a2a;
}
.contact-widget-prompt {
position: absolute;
bottom: 80px;
right: 0;
text-align: center;
background: #ffffff;
padding: 12px 18px;
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
max-width: 220px;
opacity: 0;
visibility: hidden;
transform: scale(0.8) translateY(10px);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contact-widget-prompt.show {
opacity: 1;
visibility: visible;
transform: scale(1) translateY(0);
}
.contact-widget-prompt::after {
content: "";
position: absolute;
bottom: -6px;
right: 25px;
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #ffffff transparent transparent transparent;
}
.prompt-close {
position: absolute;
top: -10px;
right: 5px;
background: #008749;
border: none;
color: #ffffff;
font-size: 16px;
cursor: pointer;
padding: 0;
width: 22px;
height: 22px;
line-height: 22px;
text-align: center;
border-radius: 50%;
transition: all 0.3s;
display: flex;
align-items: center;
justify-content: center;
}
.prompt-close:hover {
background: #006638;
transform: rotate(90deg);
}
.prompt-text {
font-size: 13px;
color: #333;
line-height: 1.6;
font-weight: 500;
}
/* Responsive */
@media (max-width: 768px) {
.bottom-widgets {
right: 15px;
bottom: 15px;
}
.contact-widget-button {
width: 55px;
height: 55px;
}
.contact-widget-button::after {
top: 3px;
right: 4px;
}
.widget-icon {
width: 24px;
height: 24px;
}
.contact-widget-prompt {
right: 0;
bottom: 85px;
max-width: 200px;
}
.scroll-top {
width: 55px;
height: 55px;
}
}
@media (max-width: 480px) {
.bottom-widgets {
right: 10px;
bottom: 10px;
}
.contact-widget-button {
width: 50px;
height: 50px;
}
.contact-widget-button::after {
top: 2px;
right: 3px;
}
.widget-icon {
width: 22px;
height: 22px;
}
.scroll-top {
width: 50px;
height: 50px;
}
.contact-item a {
padding: 10px 12px;
font-size: 14px;
}
.contact-icon {
width: 36px;
height: 36px;
}
.contact-icon svg {
width: 18px;
height: 18px;
}
.contact-widget-prompt {
max-width: 180px;
right: 0;
bottom: 80px;
}
/* Scroll top even further left on small phones */
.scroll-top {
right: 90px;
bottom: 15px;
}
}
/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Project Submission Page Styles
--------------------------------------------------------------*/
.project-submission {
padding: 60px 0;
}
.info-box {
background: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
margin-bottom: 20px;
transition: all 0.3s ease;
}
.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 135, 73, 0.15);
}
.info-box i {
font-size: 42px;
color: #008749;
margin-bottom: 15px;
display: block;
}
.info-box h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
color: #2a2a2a;
}
.info-box p {
font-size: 14px;
line-height: 1.7;
color: #666;
margin: 0;
}
.project-form-container {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.project-form-container h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
color: #2a2a2a;
}
.project-form-container > p {
color: #666;
margin-bottom: 30px;
}
.form-section {
margin-bottom: 35px;
padding-bottom: 30px;
border-bottom: 1px solid #e8e8e8;
}
.form-section:last-of-type {
border-bottom: none;
padding-bottom: 0;
}
.form-section h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #2a2a2a;
display: flex;
align-items: center;
gap: 10px;
}
.form-section h3 i {
color: #008749;
font-size: 22px;
}
.form-control,
.form-select {
border: 1px solid #ddd;
border-radius: 8px;
padding: 12px 16px;
font-size: 15px;
transition: all 0.3s ease;
height: auto;
}
.form-control:focus,
.form-select:focus {
border-color: #008749;
box-shadow: 0 0 0 0.2rem rgba(0, 135, 73, 0.15);
}
.form-label {
font-weight: 600;
color: #2a2a2a;
margin-bottom: 12px;
font-size: 15px;
}
/* Project Type Grid */
.project-type-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 15px;
margin-top: 10px;
}
.project-type-option {
margin: 0;
cursor: pointer;
}
.project-type-option input[type="checkbox"] {
display: none;
}
.project-type-option .option-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 25px 15px;
border: 2px solid #e8e8e8;
border-radius: 12px;
background: #ffffff;
transition: all 0.3s ease;
text-align: center;
height: 100%;
min-height: 130px;
}
.project-type-option .option-card i {
font-size: 36px;
color: #008749;
margin-bottom: 12px;
}
.project-type-option .option-card span {
font-size: 14px;
font-weight: 600;
color: #2a2a2a;
}
.project-type-option input[type="checkbox"]:checked + .option-card {
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
border-color: #008749;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 135, 73, 0.3);
}
.project-type-option input[type="checkbox"]:checked + .option-card i,
.project-type-option input[type="checkbox"]:checked + .option-card span {
color: #ffffff;
}
.project-type-option:hover .option-card {
border-color: #008749;
transform: translateY(-3px);
}
/* File Upload Area */
.file-upload-area {
border: 2px dashed #ddd;
border-radius: 12px;
padding: 40px 30px;
text-align: center;
background: #fafafa;
transition: all 0.3s ease;
cursor: pointer;
}
.file-upload-area.drag-over {
border-color: #008749;
background: rgba(0, 135, 73, 0.05);
}
.file-upload-area i {
font-size: 48px;
color: #008749;
display: block;
margin-bottom: 15px;
}
.file-upload-area p {
font-size: 15px;
color: #666;
margin: 0 0 8px 0;
}
.upload-link {
color: #008749;
font-weight: 600;
cursor: pointer;
text-decoration: underline;
margin: 0;
}
.upload-link:hover {
color: #006638;
}
.file-info {
font-size: 13px;
color: #999;
display: block;
}
.file-list {
margin-top: 20px;
}
.file-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
background: #f8f8f8;
border-radius: 8px;
margin-bottom: 10px;
border: 1px solid #e8e8e8;
}
.file-item i {
color: #008749;
font-size: 20px;
}
.file-item span {
font-size: 14px;
color: #2a2a2a;
}
.file-size {
color: #999 !important;
margin-left: auto;
}
/* KVKK Checkbox */
.form-check {
padding-left: 0;
}
.form-check-input {
width: 20px;
height: 20px;
margin-top: 2px;
margin-right: 10px;
border: 2px solid #ddd;
cursor: pointer;
float: left;
}
.form-check-input:checked {
background-color: #008749;
border-color: #008749;
}
.form-check-label {
font-size: 14px;
color: #666;
line-height: 1.6;
cursor: pointer;
display: block;
overflow: hidden;
}
.form-check-label a {
color: #008749;
font-weight: 600;
text-decoration: underline;
}
.form-check-label a:hover {
color: #006638;
}
/* Submit Button */
.btn-submit {
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
color: #ffffff;
border: none;
padding: 16px 48px;
font-size: 16px;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 15px rgba(0, 135, 73, 0.3);
}
.btn-submit:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 135, 73, 0.4);
}
.btn-submit i {
font-size: 18px;
}
/* Form States */
.project-form .loading {
display: none;
background: #ffffff;
text-align: center;
padding: 15px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ddd;
}
.project-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #008749;
border-top-color: #e8e8e8;
animation: animate-loading 1s linear infinite;
}
.project-form .error-message {
display: none;
color: #ffffff;
background: #dc3545;
text-align: center;
padding: 15px;
margin-bottom: 15px;
font-weight: 600;
border-radius: 8px;
}
.project-form .sent-message {
display: none;
color: #ffffff;
background: #008749;
text-align: center;
padding: 15px;
margin-bottom: 15px;
font-weight: 600;
border-radius: 8px;
}
@keyframes animate-loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Benefits Section */
.benefits-section {
padding: 80px 0;
}
.section-title h2 {
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
color: #2a2a2a;
}
.section-title p {
font-size: 16px;
color: #666;
margin-bottom: 0;
}
.process-step {
background: #ffffff;
padding: 35px 25px;
border-radius: 12px;
text-align: center;
position: relative;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
height: 100%;
}
.process-step:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0, 135, 73, 0.15);
}
.step-number {
position: absolute;
top: -15px;
right: 20px;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 18px;
box-shadow: 0 4px 12px rgba(0, 135, 73, 0.3);
}
.process-step i {
font-size: 48px;
color: #008749;
margin-bottom: 20px;
display: block;
}
.process-step h4 {
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
color: #2a2a2a;
}
.process-step p {
font-size: 14px;
line-height: 1.7;
color: #666;
margin: 0;
}
/* Responsive */
@media (max-width: 991px) {
.project-form-container {
padding: 30px 20px;
}
.project-type-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.info-box {
margin-bottom: 30px;
}
.project-form-container h2 {
font-size: 24px;
}
.section-title h2 {
font-size: 28px;
}
.benefits-section {
padding: 60px 0;
}
.process-step {
margin-bottom: 30px;
}
}
@media (max-width: 576px) {
.project-type-grid {
grid-template-columns: 1fr;
}
.project-form-container {
padding: 25px 15px;
}
.btn-submit {
padding: 14px 36px;
font-size: 15px;
}
}
/*--------------------------------------------------------------
# Success Popup & Notifications
--------------------------------------------------------------*/
.success-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
}
.success-popup-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s ease;
}
.success-popup-content {
position: relative;
background: #ffffff;
padding: 50px 40px;
border-radius: 20px;
text-align: center;
max-width: 500px;
width: 90%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transform: scale(0.7);
opacity: 0;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.success-icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
animation: scaleIn 0.5s ease 0.2s backwards;
}
.success-icon i {
font-size: 60px;
color: #ffffff;
animation: checkmark 0.5s ease 0.4s backwards;
}
.success-popup-content h2 {
font-size: 32px;
color: #2a2a2a;
margin-bottom: 15px;
font-weight: 700;
}
.success-popup-content p {
font-size: 16px;
color: #666;
line-height: 1.6;
margin-bottom: 30px;
}
.popup-btn {
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
color: #ffffff;
border: none;
padding: 15px 40px;
font-size: 16px;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 135, 73, 0.3);
}
.popup-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 135, 73, 0.4);
}
/* Loading Animation Override */
.project-form .loading {
display: none;
background: linear-gradient(135deg, #008749 0%, #00a75e 100%);
color: #ffffff;
text-align: center;
padding: 20px;
margin-bottom: 20px;
border-radius: 12px;
font-weight: 600;
font-size: 16px;
box-shadow: 0 4px 15px rgba(0, 135, 73, 0.2);
}
.project-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 20px;
height: 20px;
margin: 0 10px -4px 0;
border: 3px solid rgba(255, 255, 255, 0.3);
border-top-color: #ffffff;
animation: animate-loading 1s linear infinite;
}
/* Notification Toast */
.notification {
position: fixed;
top: 20px;
right: 20px;
padding: 15px 25px;
border-radius: 8px;
color: #ffffff;
font-weight: 600;
z-index: 100000;
transform: translateX(400px);
transition: transform 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.notification.show {
transform: translateX(0);
}
.notification-error {
background: #dc3545;
}
.notification-success {
background: #008749;
}
/*--------------------------------------------------------------
# Call Request Popup
--------------------------------------------------------------*/
.call-popup {
position: fixed;
inset: 0;
background: transparent;
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}
.call-popup.is-visible {
display: flex;
}
body.call-popup-open {
overflow: hidden;
}
.call-popup-overlay {
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.75);
backdrop-filter: blur(4px);
opacity: 0;
transition: opacity 0.3s ease;
}
.call-popup.is-visible .call-popup-overlay {
opacity: 1;
}
.call-popup-dialog {
position: relative;
z-index: 1;
width: min(520px, calc(100% - 32px));
max-height: min(90vh, 720px);
border-radius: 18px;
background: var(--surface-color);
padding: 32px;
box-shadow: 0 25px 80px rgba(15, 23, 42, 0.25);
transform: translateY(20px) scale(0.98);
opacity: 0;
transition: all 0.35s ease;
display: flex;
flex-direction: column;
overflow: hidden;
}
.call-popup.is-visible .call-popup-dialog {
transform: none;
opacity: 1;
}
.call-popup-close {
position: absolute;
top: 18px;
right: 18px;
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
background: color-mix(in srgb, var(--heading-color) 8%, white 92%);
color: var(--heading-color);
font-size: 24px;
line-height: 1;
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.call-popup-close:hover {
background: color-mix(in srgb, var(--heading-color) 12%, white 88%);
transform: scale(1.05);
}
.call-popup-header h3 {
font-size: 28px;
margin-bottom: 6px;
}
.call-popup-header p {
margin-bottom: 24px;
color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.call-popup-form {
overflow-y: auto;
padding-right: 6px;
}
.call-popup-form::-webkit-scrollbar {
width: 6px;
}
.call-popup-form::-webkit-scrollbar-thumb {
background: color-mix(in srgb, var(--accent-color) 60%, transparent 40%);
border-radius: 10px;
}
.call-popup-form::-webkit-scrollbar-track {
background: transparent;
}
.call-popup-form .form-group {
margin-bottom: 18px;
}
.call-popup-form label {
display: block;
font-weight: 600;
margin-bottom: 6px;
color: var(--heading-color);
}
.call-popup-form input,
.call-popup-form textarea,
.call-popup-form select {
width: 100%;
border-radius: 10px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
padding: 12px 14px;
font-size: 15px;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.call-popup-form input:focus,
.call-popup-form textarea:focus,
.call-popup-form select:focus {
border-color: var(--accent-color);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
outline: none;
}
.call-popup-form textarea {
min-height: 90px;
resize: vertical;
}
.call-popup-form .form-hint {
font-size: 13px;
color: color-mix(in srgb, var(--default-color), transparent 35%);
margin-top: 6px;
}
.call-popup-form .kvkk-check {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
margin-top: 4px;
}
.call-popup-form .kvkk-check input {
width: auto;
margin-top: 4px;
}
.call-popup-form .kvkk-check a {
color: var(--accent-color);
text-decoration: underline;
}
.call-popup-actions {
margin-top: 18px;
display: flex;
flex-direction: column;
gap: 10px;
}
.call-popup-submit {
width: 100%;
border: none;
border-radius: 12px;
padding: 14px;
background: var(--accent-color);
color: var(--contrast-color);
font-weight: 600;
font-size: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-popup-submit:hover {
transform: translateY(-1px);
box-shadow: 0 15px 35px rgba(255, 196, 81, 0.3);
}
.call-popup-feedback {
min-height: 46px;
font-size: 15px;
font-weight: 600;
}
.call-popup-feedback span {
display: none;
width: 100%;
padding: 12px 14px;
border-radius: 12px;
border: 1px solid transparent;
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
gap: 10px;
align-items: center;
}
.call-popup-loading,
.call-popup-success,
.call-popup-error {
display: none;
}
.call-popup-feedback span::before {
content: '';
width: 18px;
height: 18px;
border-radius: 50%;
border: 3px solid currentColor;
border-bottom-color: transparent;
animation: call-spin 0.8s linear infinite;
}
.call-popup-success::before,
.call-popup-error::before {
border: none;
width: auto;
height: auto;
font-size: 18px;
animation: none;
margin-right: 6px;
}
.call-popup-success::before {
content: '\2713';
}
.call-popup-error::before {
content: '\26A0';
}
.call-popup-loading {
color: color-mix(in srgb, var(--heading-color), transparent 10%);
background: color-mix(in srgb, var(--accent-color), transparent 80%);
border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}
.call-popup-success {
color: #0f5132;
background: #d1fae5;
border-color: #22c55e33;
}
.call-popup-error {
color: #b91c1c;
background: #fee2e2;
border-color: #ef444433;
}
@keyframes call-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.call-popup-form.is-submitting .call-popup-submit {
opacity: 0.7;
pointer-events: none;
}
@media (max-width: 575px) {
.call-popup-dialog {
padding: 24px;
max-height: 92vh;
}
.call-popup-header h3 {
font-size: 24px;
}
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes scaleIn {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}
@keyframes checkmark {
0% {
transform: scale(0) rotate(-45deg);
}
50% {
transform: scale(1.2) rotate(0deg);
}
100% {
transform: scale(1) rotate(0deg);
}
}
/* Responsive */
@media (max-width: 576px) {
.success-popup-content {
padding: 40px 25px;
}
.success-icon {
width: 80px;
height: 80px;
}
.success-icon i {
font-size: 50px;
}
.success-popup-content h2 {
font-size: 26px;
}
.success-popup-content p {
font-size: 15px;
}
.notification {
top: 10px;
right: 10px;
left: 10px;
transform: translateY(-100px);
}
.notification.show {
transform: translateY(0);
}
}
/* Campaign widget brand text and dot */
.campaign-logo .campaign-brand {
color: #000000;
}
.campaign-logo .campaign-dot {
color: var(--accent-color);
}
/*--------------------------------------------------------------
# Portfolio Modal
--------------------------------------------------------------*/
.portfolio-modal {
display: none;
position: fixed;
z-index: 99999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s;
}
.portfolio-modal-content {
background-color: var(--surface-color);
margin: 5% auto;
padding: 30px;
border: 1px solid #888;
width: 90%;
max-width: 900px;
border-radius: 8px;
position: relative;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
animation: slideIn 0.3s;
}
.close-modal {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
position: absolute;
right: 20px;
top: 15px;
z-index: 10;
}
.close-modal:hover,
.close-modal:focus {
color: var(--accent-color);
text-decoration: none;
cursor: pointer;
}
.modal-project-details h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.modal-project-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.modal-project-info ul li {
display: flex;
margin-bottom: 10px;
align-items: center;
}
.modal-project-info ul li strong {
min-width: 120px;
color: var(--heading-color);
font-weight: 600;
}
.modal-project-description {
margin-top: 30px;
}
.modal-project-description p {
padding: 0;
color: var(--default-color);
}
.portfolio-details-slider .swiper-wrapper {
align-items: center;
}
.portfolio-details-slider img {
width: 100%;
border-radius: 8px;
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes slideIn {
from {transform: translateY(-50px); opacity: 0;}
to {transform: translateY(0); opacity: 1;}
}
@media (max-width: 768px) {
.portfolio-modal-content {
margin: 10% auto;
width: 95%;
padding: 20px;
}
}