/*
Theme Name: Aasiyana G-Tech
Theme URI: https://aasiyanagtech.co.uk
Author: Aasiyana G-Tech Ltd
Author URI: https://aasiyanagtech.co.uk
Description: Custom one-page theme for Aasiyana G-Tech, an Oracle Cloud consulting firm. Replicates the original Canva site design with sections for hero, about, founder profile, services, process, industries, technology stack, testimonials and contact CTA.
Version: 1.0
Requires PHP: 7.4
Text Domain: aasiyana-gtech
*/

/* -------------------------------------------------- */
/* Variables                                           */
/* -------------------------------------------------- */
:root{
  --navy-900:#0a1f38;
  --navy-800:#0d2b4e;
  --navy-700:#123a63;
  --blue-600:#1a4a7a;
  --blue-500:#2f6bb0;
  --red-500:#e6543f;
  --red-600:#d6432e;
  --grey-50:#f5f8fb;
  --grey-100:#eef2f6;
  --grey-200:#e3e8ee;
  --grey-500:#6b7684;
  --white:#ffffff;
  --text-dark:#0d2b4e;
  --text-body:#4c5866;
  --radius-md:12px;
  --radius-lg:20px;
  --shadow-card:0 10px 30px rgba(13,43,78,.08);
  --container:1160px;
}

/* -------------------------------------------------- */
/* Reset & base                                        */
/* -------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
body{margin:0;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;cursor:pointer;}

body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  color:var(--text-body);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Poppins','Inter',sans-serif;
  color:var(--text-dark);
  margin:0 0 .5em;
  line-height:1.2;
  font-weight:600;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  font-weight:600;
  color:var(--red-500);
}

.section{padding:96px 0;}
.section-tight{padding:64px 0;}
.section-title{text-align:center;max-width:640px;margin:0 auto 56px;}
.section-title h2{font-size:34px;margin-bottom:14px;}
.section-title p{font-size:17px;color:var(--text-body);margin:0;}
.bg-grey{background:var(--grey-50);}
.bg-navy{background:var(--navy-800);}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:8px;
  font-weight:600;
  font-size:15px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  border:2px solid transparent;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--red-500);color:var(--white);}
.btn-primary:hover{background:var(--red-600);box-shadow:0 10px 24px rgba(230,84,63,.35);}
.btn-outline{border-color:rgba(255,255,255,.6);color:var(--white);background:transparent;}
.btn-outline:hover{background:rgba(255,255,255,.12);}

/* -------------------------------------------------- */
/* Header                                              */
/* -------------------------------------------------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--navy-900);
  padding:18px 0;
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
}
.site-logo{
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:19px;
  letter-spacing:.01em;
}
.main-nav{display:flex;align-items:center;gap:36px;}
.main-nav ul{display:flex;gap:32px;}
.main-nav a{
  color:rgba(255,255,255,.85);
  font-size:15px;
  font-weight:500;
  transition:color .15s ease;
}
.main-nav a:hover{color:var(--white);}
.nav-toggle{display:none;background:none;border:0;padding:6px;}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;}

/* -------------------------------------------------- */
/* Hero                                                */
/* -------------------------------------------------- */
.hero{
  position:relative;
  background:linear-gradient(120deg,var(--navy-900) 0%,var(--blue-600) 55%,var(--blue-500) 100%);
  color:var(--white);
  padding:110px 0 150px;
  overflow:hidden;
  text-align:center;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.08) 0, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.08) 0, transparent 45%);
  pointer-events:none;
}
.hero-inner{position:relative;max-width:760px;margin:0 auto;}
.hero h1{color:var(--white);font-size:44px;margin-bottom:22px;}
.hero p{font-size:17px;color:rgba(255,255,255,.85);max-width:620px;margin:0 auto 34px;}
.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}

/* Stats card */
.stats-wrap{margin-top:-70px;position:relative;z-index:5;}
.stats-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:44px 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:center;
}
.stat-num{font-size:32px;font-weight:700;color:var(--navy-800);font-family:'Poppins',sans-serif;}
.stat-label{font-size:14px;color:var(--text-body);margin-top:4px;}

/* -------------------------------------------------- */
/* Two-column content (About / Founder)                */
/* -------------------------------------------------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.split.reverse .split-media{order:2;}
.split.reverse .split-text{order:1;}
.split-media img,
.image-placeholder{
  border-radius:var(--radius-lg);
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.image-placeholder{
  background:repeating-linear-gradient(45deg,var(--grey-200),var(--grey-200) 12px,var(--grey-100) 12px,var(--grey-100) 24px);
  display:flex;align-items:center;justify-content:center;
  color:var(--grey-500);
  font-size:13px;
  font-weight:600;
  text-align:center;
  padding:20px;
}
.split-text h2{font-size:28px;}
.split-text .eyebrow{display:block;margin-bottom:6px;}
.split-text p{margin:0 0 16px;font-size:15.5px;}
.founder-name{font-size:26px;margin-bottom:2px;}
.founder-title{color:var(--red-500);font-weight:600;font-size:14px;margin-bottom:16px;display:block;}

/* -------------------------------------------------- */
/* Company profile section                             */
/* -------------------------------------------------- */
.profile-block{
  max-width:860px;
  margin:0 auto 48px;
}
.profile-block:last-child{margin-bottom:0;}
.profile-heading{
  font-size:22px;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:2px solid var(--grey-200);
}
.profile-block p{font-size:15.5px;margin:0 0 16px;}
.profile-list{
  margin:0 0 20px;
  padding:0;
}
.profile-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  font-size:15px;
  color:var(--text-body);
}
.profile-list li::before{
  content:"";
  position:absolute;
  left:0;top:8px;
  width:9px;height:9px;
  border-radius:50%;
  background:var(--red-500);
}
.profile-list li strong{color:var(--text-dark);}

.vision-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:860px;
  margin:0 auto 56px;
}
.vm-card{
  background:var(--navy-800);
  color:rgba(255,255,255,.9);
  border-radius:var(--radius-md);
  padding:30px 28px;
}
.vm-card h4{
  color:var(--white);
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:12px;
}
.vm-card p{margin:0;font-size:14.5px;color:rgba(255,255,255,.85);}

.profile-subgrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin-top:8px;
}
.profile-subheading{
  font-size:15px;
  color:var(--text-dark);
  margin-bottom:10px;
}

@media (max-width:720px){
  .vision-mission-grid{grid-template-columns:1fr;}
  .profile-subgrid{grid-template-columns:1fr;gap:20px;}
}

/* -------------------------------------------------- */
/* Services grid                                       */
/* -------------------------------------------------- */
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--radius-md);
  padding:32px 28px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);}
.icon-box{
  width:46px;height:46px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  background:var(--grey-100);
}
.icon-box svg{width:22px;height:22px;}
.icon-box.blue{background:#e7f0fb;color:var(--blue-500);}
.icon-box.red{background:#fdece9;color:var(--red-500);}
.service-card h3{font-size:18px;margin-bottom:8px;}
.service-card p{font-size:14.5px;margin:0;color:var(--text-body);}

/* -------------------------------------------------- */
/* Why choose us                                       */
/* -------------------------------------------------- */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:center;
}
.why-item .icon-circle{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--grey-100);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;
}
.why-item .icon-circle svg{width:26px;height:26px;color:var(--navy-800);}
.why-item h3{font-size:16px;margin-bottom:8px;}
.why-item p{font-size:14px;margin:0;}

/* -------------------------------------------------- */
/* Process timeline                                    */
/* -------------------------------------------------- */
.process-section{color:var(--white);}
.process-section .section-title h2{color:var(--white);}
.process-track{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  position:relative;
  max-width:900px;
  margin:0 auto;
}
.process-track::before{
  content:"";
  position:absolute;
  top:22px;left:0;right:0;
  height:2px;
  background:rgba(255,255,255,.25);
}
.process-step{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  flex:1;
  text-align:center;
}
.process-dot{
  width:44px;height:44px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-family:'Poppins',sans-serif;
  color:var(--white);
  font-size:16px;
}
.process-dot.red{background:var(--red-500);}
.process-dot.blue{background:var(--blue-500);}
.process-step span.label{font-size:14px;color:rgba(255,255,255,.9);font-weight:500;}

/* -------------------------------------------------- */
/* Industries                                          */
/* -------------------------------------------------- */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.industry-card{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  aspect-ratio:4/3;
}
.industry-card .image-placeholder{
  height:100%;aspect-ratio:auto;border-radius:0;
}
.industry-card img{
  height:100%;width:100%;object-fit:cover;
}
.industry-card .label{
  position:absolute;
  left:0;bottom:0;right:0;
  padding:18px 20px;
  background:linear-gradient(0deg,rgba(10,31,56,.75),transparent);
  color:var(--white);
  font-weight:600;
  font-size:16px;
}

/* -------------------------------------------------- */
/* Tech stack pills                                    */
/* -------------------------------------------------- */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  max-width:760px;
  margin:0 auto;
}
.pill{
  padding:10px 20px;
  border-radius:999px;
  background:var(--white);
  border:1px solid var(--grey-200);
  font-size:14px;
  font-weight:500;
  color:var(--navy-800);
}

/* -------------------------------------------------- */
/* Testimonials                                        */
/* -------------------------------------------------- */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--radius-md);
  padding:30px 26px;
}
.testimonial-card p{font-size:14.5px;font-style:italic;color:var(--text-body);margin:0 0 22px;}
.testimonial-person{display:flex;align-items:center;gap:12px;}
.avatar{
  width:44px;height:44px;border-radius:50%;
  background:var(--grey-200);
  flex-shrink:0;
}
.testimonial-person .name{font-weight:600;font-size:14.5px;color:var(--text-dark);}
.testimonial-person .role{font-size:13px;color:var(--text-body);}

/* -------------------------------------------------- */
/* Careers / Job listings                              */
/* -------------------------------------------------- */
.job-list{
  max-width:860px;
  margin:0 auto 56px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.job-card{
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--radius-md);
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.job-card-main h3{font-size:19px;margin-bottom:8px;}
.job-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.job-tag{
  font-size:12.5px;
  font-weight:600;
  color:var(--blue-500);
  background:#e7f0fb;
  padding:5px 12px;
  border-radius:999px;
}
.job-description{font-size:14.5px;color:var(--text-body);}
.job-description p{margin:0;}
.job-apply-btn{flex-shrink:0;white-space:nowrap;}

.application-form-wrap{
  max-width:640px;
  margin:0 auto;
  scroll-margin-top:100px;
}
.apply-heading{
  text-align:center;
  font-size:24px;
  margin-bottom:24px;
}

@media (max-width:600px){
  .job-card{flex-direction:column;align-items:flex-start;}
  .job-apply-btn{width:100%;text-align:center;}
}

/* -------------------------------------------------- */
/* Contact form                                        */
/* -------------------------------------------------- */
.contact-form{
  max-width:640px;
  margin:0 auto;
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--radius-md);
  padding:36px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.form-field{margin-bottom:20px;}
.form-field label{
  display:block;
  font-size:13.5px;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:6px;
}
.form-field input,
.form-field textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--grey-200);
  border-radius:8px;
  font-family:inherit;
  font-size:14.5px;
  color:var(--text-dark);
  background:var(--grey-50);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--blue-500);
  box-shadow:0 0 0 3px rgba(47,107,176,.15);
  background:var(--white);
}
.form-field textarea{resize:vertical;}
.contact-form .btn{width:100%;text-align:center;border:2px solid transparent;}

.form-notice{
  max-width:640px;
  margin:0 auto 24px;
  padding:14px 18px;
  border-radius:8px;
  font-size:14.5px;
  font-weight:500;
}
.form-notice.success{background:#e8f7ef;color:#1c7a44;border:1px solid #bfe9d2;}
.form-notice.error{background:#fdece9;color:#b83a26;border:1px solid #f6c9c1;}

@media (max-width:600px){
  .form-row{grid-template-columns:1fr;}
  .contact-form{padding:26px;}
}

/* -------------------------------------------------- */
/* CTA banner                                          */
/* -------------------------------------------------- */
.cta-banner{
  background:linear-gradient(120deg,var(--blue-600),var(--blue-500));
  color:var(--white);
  text-align:center;
  padding:80px 0;
}
.cta-banner h2{color:var(--white);font-size:30px;}
.cta-banner p{max-width:520px;margin:0 auto 30px;color:rgba(255,255,255,.85);}

/* -------------------------------------------------- */
/* Footer                                              */
/* -------------------------------------------------- */
.site-footer{
  background:var(--navy-900);
  color:rgba(255,255,255,.75);
  padding:72px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-grid h4{
  color:var(--white);
  font-size:15px;
  margin-bottom:18px;
}
.footer-grid p{font-size:14px;color:rgba(255,255,255,.6);}
.footer-grid ul li{margin-bottom:10px;font-size:14px;}
.footer-grid ul a{color:rgba(255,255,255,.65);transition:color .15s ease;}
.footer-grid ul a:hover{color:var(--white);}
.footer-brand{color:var(--white);font-weight:700;font-size:18px;font-family:'Poppins',sans-serif;margin-bottom:10px;}
.social-row{display:flex;gap:12px;margin-top:16px;}
.social-row a{
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
}
.social-row svg{width:15px;height:15px;color:#fff;}
.footer-bottom{
  text-align:center;
  padding:24px 0;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

/* -------------------------------------------------- */
/* Responsive                                          */
/* -------------------------------------------------- */
@media (max-width:960px){
  .card-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .industry-grid{grid-template-columns:repeat(2,1fr);}
  .testimonial-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .split{grid-template-columns:1fr;}
  .split.reverse .split-media{order:1;}
  .split.reverse .split-text{order:2;}
}

@media (max-width:720px){
  .main-nav{position:fixed;top:64px;left:0;right:0;bottom:0;background:var(--navy-900);flex-direction:column;padding:28px 24px;transform:translateX(100%);transition:transform .25s ease;}
  .main-nav.open{transform:translateX(0);}
  .main-nav ul{flex-direction:column;gap:18px;}
  .nav-toggle{display:block;}
  .hero h1{font-size:30px;}
  .stats-card{grid-template-columns:1fr;gap:26px;}
  .card-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .process-track{flex-wrap:wrap;gap:24px 0;}
  .process-track::before{display:none;}
  .process-step{flex:0 0 33%;}
  .industry-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .section{padding:64px 0;}
}
