﻿
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* ================================================================
   QURGAL CORP
   ================================================================ */


: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: "Inter", sans-serif;
}

:root {
    --background-color: #ffffff;
    --accent-color: #1a237e;
    --default-color: #444444;
    --surface-color: #ffffff;
    --heading-text: #1e293b;
    --heading-text-muted: #64748b;
    --brand-gradient: linear-gradient(135deg, #1a237e, #6366f1);
    /* QURGAL Colors */
    --QURGAL-dark: #0a1128;
    --QURGAL-white: #ffffff;
    /* Rose */
    --QURGAL-rose: #b33951;
    --QURGAL-rose-light: #d68796;
    --QURGAL-rose-ultra-light: #ffebec;
    /* Indigo */
    --QURGAL-indigo: #5759b3;
    --QURGAL-indigo-light: #7678c7;
    --QURGAL-indigo-ultra-light: #d6d7f2;
    /* Purple */
    --QURGAL-purple: #6a5377;
    --QURGAL-purple-light: #8b7499;
    --QURGAL-purple-ultra-light: #dbd2df;
    /* Blue */
    --QURGAL-blue: #1a237e;
    --QURGAL-blue-light: #5c6bc0;
    --QURGAL-blue-ultra-light: #dae5ff;
    /* Amber */
    --QURGAL-amber: #fd7e14;
    --QURGAL-amber-light: #ff9e4f;
    --QURGAL-amber-ultra-light: #fff2e7;
}

:root {
    --nav-color: #e5eaee; /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1a237e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-family: var(--default-font);
}

a {
  color: var(--QURGAL-blue);
  text-decoration: none;
  transition: 0.3s;
}

    a:hover {
        color: var(--QURGAL-blue-hover);
        /*  text-decoration: none;*/
    }

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

h2,
h3,
h4,
h5,
h6 {
    /*color: var(--heading-text);*/
    /*font-family: var(--heading-font);*/
}

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

.custom-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}
/* Bootstrap'in varsayılan container genişliğini büyük ekranlarda genişletiyoruz */
@media (min-width: 1400px) {
    .container, .container-lg, .container-xl, .container-xxl {
        max-width: 1600px; /* Senin istediğin genişlik */
        width: 100%;
    }
}

/* Ara ekranlar için ince ayar (Opsiyonel) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--QURGAL-blue);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--QURGAL-blue) 50%, color-mix(in srgb, var(--QURGAL-blue), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--QURGAL-blue), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--QURGAL-blue);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --QURGAL-dark: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 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 {
  margin: 0;
  font-weight: 700;
  color: var(--QURGAL-dark);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--surface-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--surface-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--surface-color);
  background: var(--QURGAL-blue);
  border-color: var(--QURGAL-blue);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    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);
}

/*------------------------------ 
# Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(26, 35, 126, 0.80);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--surface-color);
  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(--QURGAL-blue) transparent var(--QURGAL-blue) 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);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--QURGAL-blue);
    width: 50px;
    height: 50px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--surface-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--QURGAL-blue), transparent 20%);
        color: var(--surface-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(--surface-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

    .page-title .breadcrumbs ol li a {
        color: var(--default-color);
        text-decoration: none;
        transition: 0.3s;
    }

        .page-title .breadcrumbs ol li a:hover {
            color: color-mix(in srgb, var(--QURGAL-blue) 90%, white 15%);
        }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--heading-text);
    background-color: var(--surface-color);
    scroll-margin-top: 90px;
    overflow: clip;
}

#home-section, .home-section {
    padding: 60px 0px 60px 18px !important;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    /*padding: 60px 0px 0px 0px;*/
    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: var(--QURGAL-blue-light);
        position: relative;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 2px;
            display: inline-block;
            background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
            margin: 10px 0px 0px 0px;
        }

.section-title p {
  color: var(--QURGAL-blue);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}


/* 1. Mavi Geçiş #0d6efd */
.shadow-blue {
    box-shadow: 0 30px 60px -12px rgba(0, 102, 255, 0.15), 0 18px 36px -18px rgba(0, 102, 255, 0.2);
}

/* 2. Mor Geçiş #8e7f96 */
.shadow-purple {
    box-shadow: 0 30px 60px -12px rgba(142, 36, 170, 0.15), 0 18px 36px -18px rgba(142, 36, 170, 0.2);
}

/* 3. Indigo Geçiş #5d5bd4 */
.shadow-indigo {
    box-shadow: 0 30px 60px -12px rgba(93, 91, 212, 0.15), 0 18px 36px -18px rgba(16, 185, 129, 0.2);
}

/* 4. Kehribar Geçiş #fd7e14 */
.shadow-amber {
    box-shadow: 0 30px 60px -12px rgba(245, 158, 11, 0.15), 0 18px 36px -18px rgba(245, 158, 11, 0.2);
}

/* 5. Rose Geçiş #df1529 */
.shadow-rose {
    box-shadow: 0 30px 60px -12px rgba(244, 63, 94, 0.15), 0 18px 36px -18px rgba(244, 63, 94, 0.2);
}





/* 1. Mavi Geçiş #0d6efd */
.blue-fade {
    background: linear-gradient(to bottom, rgba(0, 102, 255, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 2. Mor Geçiş #8e7f96 */
.purple-fade {
    background: linear-gradient(to bottom, rgba(142, 36, 170, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 3. Indigo Geçiş #5d5bd4 */
.indigo-fade {
    background: linear-gradient(to bottom, rgba(93, 91, 212, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 4. Kehribar Geçiş #fd7e14 */
.amber-fade {
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 5. Rose Geçiş #df1529 */
.rose-fade {
    background: linear-gradient(to bottom, rgba(244, 63, 94, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}





/* 1. Mavi Geçiş #0d6efd */
.blue-fade-up {
    background: linear-gradient(to top, rgba(0, 102, 255, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 2. Mor Geçiş #8e7f96 */
.purple-fade-up {
    background: linear-gradient(to top, rgba(142, 36, 170, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 3. Indigo Geçiş #5d5bd4 */
.indigo-fade-up {
    background: linear-gradient(to top, rgba(93, 91, 212, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 4. Kehribar Geçiş #fd7e14 */
.amber-fade-up {
    background: linear-gradient(to top, rgba(245, 158, 11, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 5. Rose Geçiş #df1529 */
.rose-fade-up {
    background: linear-gradient(to top, rgba(244, 63, 94, 0.07) 0%, rgba(255, 255, 255, 1) 100%);
}





/* 1. Mavi Geçiş #0d6efd */
.blue-vivid {
    background: linear-gradient(to bottom, rgba(0, 102, 255, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 2. Mor Geçiş #8e7f96 */
.purple-vivid {
    background: linear-gradient(to bottom, rgba(142, 36, 170, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 3. Indigo Geçiş #5d5bd4 */
.indigo-vivid {
    background: linear-gradient(to bottom, rgba(93, 91, 212, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 4. Kehribar Geçiş #fd7e14 */
.amber-vivid {
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 5. Rose Geçiş #df1529 */
.rose-vivid {
    background: linear-gradient(to bottom, rgba(244, 63, 94, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}





/* 1. Mavi Geçiş #0d6efd */
.blue-vivid-up {
    background: linear-gradient(to top, rgba(0, 102, 255, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 2. Mor Geçiş #8e7f96 */
.purple-vivid-up {
    background: linear-gradient(to top, rgba(142, 36, 170, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 3. Indigo Geçiş #5d5bd4 */
.indigo-vivid-up {
    background: linear-gradient(to top, rgba(93, 91, 212, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 4. Kehribar Geçiş #fd7e14 */
.amber-vivid-up {
    background: linear-gradient(to top, rgba(245, 158, 11, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 5. Rose Geçiş #df1529 */
.rose-vivid-up {
    background: linear-gradient(to top, rgba(244, 63, 94, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}